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

pub struct BuildTrigger {
Show 17 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 service_account: String, 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:

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.

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}

build_template: Option<BuildTemplate>

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

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

Returns the encoded length of the message without a length delimiter.

Clears the message, resetting all fields to their default.

Encodes the message to a buffer. Read more

Encodes the message to a newly allocated buffer.

Encodes the message with a length-delimiter to a buffer. Read more

Encodes the message with a length-delimiter to a newly allocated buffer.

Decodes an instance of the message from a buffer. Read more

Decodes a length-delimited instance of the message from the buffer.

Decodes an instance of the message from a buffer, and merges it into self. Read more

Decodes a length-delimited instance of the message from buffer, and merges it into self. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

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

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

Performs the conversion.

Wrap the input message T in a tonic::Request

The resulting type after obtaining ownership.

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

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

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

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