Class: Google::Apis::CloudbuildV1::Results
- Inherits:
-
Object
- Object
- Google::Apis::CloudbuildV1::Results
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudbuild_v1/classes.rb,
lib/google/apis/cloudbuild_v1/representations.rb,
lib/google/apis/cloudbuild_v1/representations.rb
Overview
Artifacts created by the build pipeline.
Instance Attribute Summary collapse
-
#artifact_manifest ⇒ String
Path to the artifact manifest.
-
#artifact_timing ⇒ Google::Apis::CloudbuildV1::TimeSpan
Start and end times for a build execution phase.
-
#build_step_images ⇒ Array<String>
List of build step digests, in the order corresponding to build step indices.
-
#build_step_outputs ⇒ Array<String>
List of build step outputs, produced by builder images, in the order corresponding to build step indices.
-
#images ⇒ Array<Google::Apis::CloudbuildV1::BuiltImage>
Container images that were built as a part of the build.
-
#num_artifacts ⇒ Fixnum
Number of artifacts uploaded.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Results
constructor
A new instance of Results.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Results
Returns a new instance of Results.
3536 3537 3538 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3536 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact_manifest ⇒ String
Path to the artifact manifest. Only populated when artifacts are uploaded.
Corresponds to the JSON property artifactManifest
3506 3507 3508 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3506 def artifact_manifest @artifact_manifest end |
#artifact_timing ⇒ Google::Apis::CloudbuildV1::TimeSpan
Start and end times for a build execution phase.
Corresponds to the JSON property artifactTiming
3511 3512 3513 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3511 def artifact_timing @artifact_timing end |
#build_step_images ⇒ Array<String>
List of build step digests, in the order corresponding to build step indices.
Corresponds to the JSON property buildStepImages
3516 3517 3518 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3516 def build_step_images @build_step_images end |
#build_step_outputs ⇒ Array<String>
List of build step outputs, produced by builder images, in the order
corresponding to build step indices. Cloud Builders can produce this output by writing to $
BUILDER_OUTPUT/output. Only the first 4KB of data is stored.
Corresponds to the JSON property buildStepOutputs
3524 3525 3526 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3524 def build_step_outputs @build_step_outputs end |
#images ⇒ Array<Google::Apis::CloudbuildV1::BuiltImage>
Container images that were built as a part of the build.
Corresponds to the JSON property images
3529 3530 3531 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3529 def images @images end |
#num_artifacts ⇒ Fixnum
Number of artifacts uploaded. Only populated when artifacts are uploaded.
Corresponds to the JSON property numArtifacts
3534 3535 3536 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3534 def num_artifacts @num_artifacts end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3541 3542 3543 3544 3545 3546 3547 3548 |
# File 'lib/google/apis/cloudbuild_v1/classes.rb', line 3541 def update!(**args) @artifact_manifest = args[:artifact_manifest] if args.key?(:artifact_manifest) @artifact_timing = args[:artifact_timing] if args.key?(:artifact_timing) @build_step_images = args[:build_step_images] if args.key?(:build_step_images) @build_step_outputs = args[:build_step_outputs] if args.key?(:build_step_outputs) @images = args[:images] if args.key?(:images) @num_artifacts = args[:num_artifacts] if args.key?(:num_artifacts) end |