Class: Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1BuildOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1BuildOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v2/classes.rb,
lib/google/apis/run_v2/representations.rb,
lib/google/apis/run_v2/representations.rb
Overview
Metadata for build operations.
Instance Attribute Summary collapse
-
#build ⇒ Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1Build
A build resource in the Cloud Build API.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1BuildOperationMetadata
constructor
A new instance of GoogleDevtoolsCloudbuildV1BuildOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1BuildOperationMetadata
Returns a new instance of GoogleDevtoolsCloudbuildV1BuildOperationMetadata.
3429 3430 3431 |
# File 'lib/google/apis/run_v2/classes.rb', line 3429 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build ⇒ Google::Apis::RunV2::GoogleDevtoolsCloudbuildV1Build
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
3427 3428 3429 |
# File 'lib/google/apis/run_v2/classes.rb', line 3427 def build @build end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3434 3435 3436 |
# File 'lib/google/apis/run_v2/classes.rb', line 3434 def update!(**args) @build = args[:build] if args.key?(:build) end |