Class: Google::Apis::CloudbuildV1::Results
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::Results
- Defined in:
- generated/google/apis/cloudbuild_v1/classes.rb,
generated/google/apis/cloudbuild_v1/representations.rb,
generated/google/apis/cloudbuild_v1/representations.rb
Overview
Results describes the artifacts created by the build pipeline.
Instance Attribute Summary collapse
-
#build_step_images ⇒ Array<String>
List of build step digests, in order corresponding to build step indices.
-
#images ⇒ Array<Google::Apis::CloudbuildV1::BuiltImage>
Images that were built as a part of the build.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Results
constructor
A new instance of Results.
-
#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) ⇒ Results
Returns a new instance of Results.
470 471 472 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 470 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build_step_images ⇒ Array<String>
List of build step digests, in order corresponding to build step indices.
Corresponds to the JSON property buildStepImages
468 469 470 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 468 def build_step_images @build_step_images end |
#images ⇒ Array<Google::Apis::CloudbuildV1::BuiltImage>
Images that were built as a part of the build.
Corresponds to the JSON property images
463 464 465 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 463 def images @images end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
475 476 477 478 |
# File 'generated/google/apis/cloudbuild_v1/classes.rb', line 475 def update!(**args) @images = args[:images] if args.key?(:images) @build_step_images = args[:build_step_images] if args.key?(:build_step_images) end |