Struct google_api_proto::google::devtools::cloudbuild::v1::BuildTrigger
source · pub struct BuildTrigger {Show 19 fields
pub resource_name: String,
pub id: String,
pub description: String,
pub name: String,
pub tags: Vec<String>,
pub trigger_template: Option<RepoSource>,
pub github: Option<GitHubEventsConfig>,
pub pubsub_config: Option<PubsubConfig>,
pub webhook_config: Option<WebhookConfig>,
pub create_time: Option<Timestamp>,
pub disabled: bool,
pub substitutions: BTreeMap<String, String>,
pub ignored_files: Vec<String>,
pub included_files: Vec<String>,
pub filter: String,
pub source_to_build: Option<GitRepoSource>,
pub service_account: String,
pub repository_event_config: Option<RepositoryEventConfig>,
pub build_template: Option<BuildTemplate>,
}
Expand description
Configuration for an automated build in response to source repository changes.
Fields§
§resource_name: String
The Trigger
name with format:
projects/{project}/locations/{location}/triggers/{trigger}
, where
{trigger} is a unique identifier generated by the service.
id: String
Output only. Unique identifier of the trigger.
description: String
Human-readable description of this trigger.
name: String
User-assigned name of the trigger. Must be unique within the project. Trigger names must meet the following requirements:
- They must contain only alphanumeric characters and dashes.
- They can be 1-64 characters long.
- They must begin and end with an alphanumeric character.
Tags for annotation of a BuildTrigger
trigger_template: Option<RepoSource>
Template describing the types of source changes to trigger a build.
Branch and tag names in trigger templates are interpreted as regular expressions. Any branch or tag change that matches that regular expression will trigger a build.
Mutually exclusive with github
.
github: Option<GitHubEventsConfig>
GitHubEventsConfig describes the configuration of a trigger that creates a build whenever a GitHub event is received.
Mutually exclusive with trigger_template
.
pubsub_config: Option<PubsubConfig>
PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.
webhook_config: Option<WebhookConfig>
WebhookConfig describes the configuration of a trigger that creates a build whenever a webhook is sent to a trigger’s webhook URL.
create_time: Option<Timestamp>
Output only. Time when the trigger was created.
disabled: bool
If true, the trigger will never automatically execute a build.
substitutions: BTreeMap<String, String>
Substitutions for Build resource. The keys must match the following
regular expression: ^_\[A-Z0-9_\]+$
.
ignored_files: Vec<String>
ignored_files and included_files are file glob matches using https://golang.org/pkg/path/filepath/#Match extended with support for “**”.
If ignored_files and changed files are both empty, then they are not used to determine whether or not to trigger a build.
If ignored_files is not empty, then we ignore any files that match any of the ignored_file globs. If the change has no files that are outside of the ignored_files globs, then we do not trigger a build.
included_files: Vec<String>
If any of the files altered in the commit pass the ignored_files filter and included_files is empty, then as far as this filter is concerned, we should trigger the build.
If any of the files altered in the commit pass the ignored_files filter and included_files is not empty, then we make sure that at least one of those files matches a included_files glob. If not, then we do not trigger a build.
filter: String
Optional. A Common Expression Language string.
source_to_build: Option<GitRepoSource>
The repo and ref of the repository from which to build. This field is used only for those triggers that do not respond to SCM events. Triggers that respond to such events build source at whatever commit caused the event. This field is currently only used by Webhook, Pub/Sub, Manual, and Cron triggers.
service_account: String
The service account used for all user-controlled operations including
UpdateBuildTrigger, RunBuildTrigger, CreateBuild, and CancelBuild.
If no service account is set, then the standard Cloud Build service account
([PROJECT_NUM]@system.gserviceaccount.com) will be used instead.
Format: projects/{PROJECT_ID}/serviceAccounts/{ACCOUNT_ID_OR_EMAIL}
repository_event_config: Option<RepositoryEventConfig>
The configuration of a trigger that creates a build whenever an event from Repo API is received.
build_template: Option<BuildTemplate>
Template describing the Build request to make when the trigger is matched. At least one of the template fields must be provided.
Trait Implementations§
source§impl Clone for BuildTrigger
impl Clone for BuildTrigger
source§fn clone(&self) -> BuildTrigger
fn clone(&self) -> BuildTrigger
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for BuildTrigger
impl Debug for BuildTrigger
source§impl Default for BuildTrigger
impl Default for BuildTrigger
source§impl Message for BuildTrigger
impl Message for BuildTrigger
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for BuildTrigger
impl PartialEq for BuildTrigger
source§fn eq(&self, other: &BuildTrigger) -> bool
fn eq(&self, other: &BuildTrigger) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BuildTrigger
Auto Trait Implementations§
impl Freeze for BuildTrigger
impl RefUnwindSafe for BuildTrigger
impl Send for BuildTrigger
impl Sync for BuildTrigger
impl Unpin for BuildTrigger
impl UnwindSafe for BuildTrigger
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request