BuildTrigger

Struct BuildTrigger 

Source
#[non_exhaustive]
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: HashMap<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>, /* private fields */
}
Expand description

Configuration for an automated build in response to source repository changes.

Fields (Non-exhaustive)§

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
§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: Vec<String>

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: HashMap<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 and the legacy Cloud Build service account ([PROJECT_NUM]@cloudbuild.gserviceaccount.com) is the default for the project then it 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.

Implementations§

Source§

impl BuildTrigger

Source

pub fn new() -> Self

Source

pub fn set_resource_name<T: Into<String>>(self, v: T) -> Self

Sets the value of resource_name.

Source

pub fn set_id<T: Into<String>>(self, v: T) -> Self

Sets the value of id.

Source

pub fn set_description<T: Into<String>>(self, v: T) -> Self

Sets the value of description.

Source

pub fn set_name<T: Into<String>>(self, v: T) -> Self

Sets the value of name.

Source

pub fn set_tags<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<String>,

Sets the value of tags.

Source

pub fn set_trigger_template<T>(self, v: T) -> Self
where T: Into<RepoSource>,

Sets the value of trigger_template.

Source

pub fn set_or_clear_trigger_template<T>(self, v: Option<T>) -> Self
where T: Into<RepoSource>,

Sets or clears the value of trigger_template.

Source

pub fn set_github<T>(self, v: T) -> Self

Sets the value of github.

Source

pub fn set_or_clear_github<T>(self, v: Option<T>) -> Self

Sets or clears the value of github.

Source

pub fn set_pubsub_config<T>(self, v: T) -> Self
where T: Into<PubsubConfig>,

Sets the value of pubsub_config.

Source

pub fn set_or_clear_pubsub_config<T>(self, v: Option<T>) -> Self
where T: Into<PubsubConfig>,

Sets or clears the value of pubsub_config.

Source

pub fn set_webhook_config<T>(self, v: T) -> Self
where T: Into<WebhookConfig>,

Sets the value of webhook_config.

Source

pub fn set_or_clear_webhook_config<T>(self, v: Option<T>) -> Self
where T: Into<WebhookConfig>,

Sets or clears the value of webhook_config.

Source

pub fn set_create_time<T>(self, v: T) -> Self
where T: Into<Timestamp>,

Sets the value of create_time.

Source

pub fn set_or_clear_create_time<T>(self, v: Option<T>) -> Self
where T: Into<Timestamp>,

Sets or clears the value of create_time.

Source

pub fn set_disabled<T: Into<bool>>(self, v: T) -> Self

Sets the value of disabled.

Source

pub fn set_substitutions<T, K, V>(self, v: T) -> Self
where T: IntoIterator<Item = (K, V)>, K: Into<String>, V: Into<String>,

Sets the value of substitutions.

Source

pub fn set_ignored_files<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<String>,

Sets the value of ignored_files.

Source

pub fn set_included_files<T, V>(self, v: T) -> Self
where T: IntoIterator<Item = V>, V: Into<String>,

Sets the value of included_files.

Source

pub fn set_filter<T: Into<String>>(self, v: T) -> Self

Sets the value of filter.

Source

pub fn set_source_to_build<T>(self, v: T) -> Self
where T: Into<GitRepoSource>,

Sets the value of source_to_build.

Source

pub fn set_or_clear_source_to_build<T>(self, v: Option<T>) -> Self
where T: Into<GitRepoSource>,

Sets or clears the value of source_to_build.

Source

pub fn set_service_account<T: Into<String>>(self, v: T) -> Self

Sets the value of service_account.

Source

pub fn set_repository_event_config<T>(self, v: T) -> Self

Sets the value of repository_event_config.

Source

pub fn set_or_clear_repository_event_config<T>(self, v: Option<T>) -> Self

Sets or clears the value of repository_event_config.

Source

pub fn set_build_template<T: Into<Option<BuildTemplate>>>(self, v: T) -> Self

Sets the value of build_template.

Note that all the setters affecting build_template are mutually exclusive.

Source

pub fn autodetect(&self) -> Option<&bool>

The value of build_template if it holds a Autodetect, None if the field is not set or holds a different branch.

Source

pub fn set_autodetect<T: Into<bool>>(self, v: T) -> Self

Sets the value of build_template to hold a Autodetect.

Note that all the setters affecting build_template are mutually exclusive.

Source

pub fn build(&self) -> Option<&Box<Build>>

The value of build_template if it holds a Build, None if the field is not set or holds a different branch.

Source

pub fn set_build<T: Into<Box<Build>>>(self, v: T) -> Self

Sets the value of build_template to hold a Build.

Note that all the setters affecting build_template are mutually exclusive.

Source

pub fn filename(&self) -> Option<&String>

The value of build_template if it holds a Filename, None if the field is not set or holds a different branch.

Source

pub fn set_filename<T: Into<String>>(self, v: T) -> Self

Sets the value of build_template to hold a Filename.

Note that all the setters affecting build_template are mutually exclusive.

Source

pub fn git_file_source(&self) -> Option<&Box<GitFileSource>>

The value of build_template if it holds a GitFileSource, None if the field is not set or holds a different branch.

Source

pub fn set_git_file_source<T: Into<Box<GitFileSource>>>(self, v: T) -> Self

Sets the value of build_template to hold a GitFileSource.

Note that all the setters affecting build_template are mutually exclusive.

Trait Implementations§

Source§

impl Clone for BuildTrigger

Source§

fn clone(&self) -> BuildTrigger

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BuildTrigger

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for BuildTrigger

Source§

fn default() -> BuildTrigger

Returns the “default value” for a type. Read more
Source§

impl Message for BuildTrigger

Source§

fn typename() -> &'static str

The typename of this message.
Source§

impl PartialEq for BuildTrigger

Source§

fn eq(&self, other: &BuildTrigger) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl StructuralPartialEq for BuildTrigger

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,