Struct gapi_grpc::google::devtools::cloudbuild::v1::BuildTrigger[][src]

pub struct BuildTrigger {
    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 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 build_template: Option<BuildTemplate>,
}

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

Fields

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:

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>

Optional. PubsubConfig describes the configuration of a trigger that creates a build whenever a Pub/Sub message is published.

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.

build_template: Option<BuildTemplate>

Template describing the Build request to make when the trigger is matched.

Trait Implementations

impl Clone for BuildTrigger[src]

impl Debug for BuildTrigger[src]

impl Default for BuildTrigger[src]

impl Message for BuildTrigger[src]

impl PartialEq<BuildTrigger> for BuildTrigger[src]

impl StructuralPartialEq for BuildTrigger[src]

Auto Trait Implementations

impl RefUnwindSafe for BuildTrigger

impl Send for BuildTrigger

impl Sync for BuildTrigger

impl Unpin for BuildTrigger

impl UnwindSafe for BuildTrigger

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]