Class: Google::Apis::CloudbuildV1::BuildTrigger
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::BuildTrigger
- Defined in:
- generated/google/apis/cloudbuild_v1/classes.rb,
generated/google/apis/cloudbuild_v1/representations.rb,
generated/google/apis/cloudbuild_v1/representations.rb
Overview
Configuration for an automated build in response to source repository changes.
Instance Attribute Summary collapse
-
#build ⇒ Google::Apis::CloudbuildV1::Build
A build resource in the Cloud Build API.
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Human-readable description of this trigger.
-
#disabled ⇒ Boolean
(also: #disabled?)
If true, the trigger will never result in a build.
-
#filename ⇒ String
Path, from the source root, to a file whose contents is used for the template.
-
#id ⇒ String
Output only.
-
#ignored_files ⇒ Array<String>
ignored_files and included_files are file glob matches using http://godoc/pkg/path/filepath#Match extended with support for "**".
-
#included_files ⇒ Array<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.
-
#substitutions ⇒ Hash<String,String>
Substitutions data for Build resource.
-
#trigger_template ⇒ Google::Apis::CloudbuildV1::RepoSource
Location of the source in a Google Cloud Source Repository.
Instance Method Summary collapse
-
#initialize(**args) ⇒ BuildTrigger
constructor
A new instance of BuildTrigger.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ BuildTrigger
Returns a new instance of BuildTrigger
603 604 605 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 603 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build ⇒ Google::Apis::CloudbuildV1::Build
A build resource in the Cloud Build API.
At a high level, a Build
describes where to find source code, how to build
it (for example, the builder image to run on the source), and where to store
the built artifacts.
Fields can include the following variables, which will be expanded when the
build is created:
- $PROJECT_ID: the project ID of the build.
- $BUILD_ID: the autogenerated ID of the build.
- $REPO_NAME: the source repository name specified by RepoSource.
- $BRANCH_NAME: the branch name specified by RepoSource.
- $TAG_NAME: the tag name specified by RepoSource.
- $REVISION_ID or $COMMIT_SHA: the commit SHA specified by RepoSource or resolved from the specified branch or tag.
- $SHORT_SHA: first 7 characters of $REVISION_ID or $COMMIT_SHA.
Corresponds to the JSON property
build
542 543 544 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 542 def build @build end |
#create_time ⇒ String
Output only. Time when the trigger was created.
Corresponds to the JSON property createTime
547 548 549 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 547 def create_time @create_time end |
#description ⇒ String
Human-readable description of this trigger.
Corresponds to the JSON property description
552 553 554 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 552 def description @description end |
#disabled ⇒ Boolean Also known as: disabled?
If true, the trigger will never result in a build.
Corresponds to the JSON property disabled
557 558 559 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 557 def disabled @disabled end |
#filename ⇒ String
Path, from the source root, to a file whose contents is used for the
template.
Corresponds to the JSON property filename
564 565 566 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 564 def filename @filename end |
#id ⇒ String
Output only. Unique identifier of the trigger.
Corresponds to the JSON property id
569 570 571 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 569 def id @id end |
#ignored_files ⇒ Array<String>
ignored_files and included_files are file glob matches using
http://godoc/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.
Corresponds to the JSON property ignoredFiles
580 581 582 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 580 def ignored_files @ignored_files end |
#included_files ⇒ Array<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.
Corresponds to the JSON property includedFiles
591 592 593 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 591 def included_files @included_files end |
#substitutions ⇒ Hash<String,String>
Substitutions data for Build resource.
Corresponds to the JSON property substitutions
596 597 598 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 596 def substitutions @substitutions end |
#trigger_template ⇒ Google::Apis::CloudbuildV1::RepoSource
Location of the source in a Google Cloud Source Repository.
Corresponds to the JSON property triggerTemplate
601 602 603 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 601 def trigger_template @trigger_template end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
608 609 610 611 612 613 614 615 616 617 618 619 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 608 def update!(**args) @build = args[:build] if args.key?(:build) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @disabled = args[:disabled] if args.key?(:disabled) @filename = args[:filename] if args.key?(:filename) @id = args[:id] if args.key?(:id) @ignored_files = args[:ignored_files] if args.key?(:ignored_files) @included_files = args[:included_files] if args.key?(:included_files) @substitutions = args[:substitutions] if args.key?(:substitutions) @trigger_template = args[:trigger_template] if args.key?(:trigger_template) end |