Struct google_cloudbuild1::BuildTrigger[][src]

pub struct BuildTrigger {
    pub description: Option<String>,
    pub trigger_template: Option<RepoSource>,
    pub filename: Option<String>,
    pub disabled: Option<bool>,
    pub build: Option<Build>,
    pub id: Option<String>,
    pub substitutions: Option<HashMap<String, String>>,
    pub create_time: Option<String>,
}

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

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

Human-readable description of this trigger.

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.

Path, from the source root, to a file whose contents is used for the template.

If true, the trigger will never result in a build.

Contents of the build template.

Unique identifier of the trigger.

@OutputOnly

Substitutions data for Build resource.

Time when the trigger was created.

@OutputOnly

Trait Implementations

impl Default for BuildTrigger
[src]

Returns the "default value" for a type. Read more

impl Clone for BuildTrigger
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for BuildTrigger
[src]

Formats the value using the given formatter. Read more

impl RequestValue for BuildTrigger
[src]

impl ResponseResult for BuildTrigger
[src]

Auto Trait Implementations