class Google::Apis::CloudbuildV1beta1::BuildOperationMetadata
Metadata for build operations.
Attributes
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. - $PROJECT_NUMBER: the project number of the build. - $LOCATION: the location/region 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` @return [Google::Apis::CloudbuildV1beta1::Build]
Public Class Methods
# File lib/google/apis/cloudbuild_v1beta1/classes.rb, line 464 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/cloudbuild_v1beta1/classes.rb, line 469 def update!(**args) @build = args[:build] if args.key?(:build) end