Class: Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1StepResult
- Inherits:
-
Object
- Object
- Google::Apis::RunV1::GoogleDevtoolsCloudbuildV1StepResult
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/run_v1/classes.rb,
lib/google/apis/run_v1/representations.rb,
lib/google/apis/run_v1/representations.rb
Overview
StepResult is the declaration of a result for a build step.
Instance Attribute Summary collapse
-
#attestation_content ⇒ String
Optional.
-
#attestation_type ⇒ String
Optional.
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1StepResult
constructor
A new instance of GoogleDevtoolsCloudbuildV1StepResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleDevtoolsCloudbuildV1StepResult
Returns a new instance of GoogleDevtoolsCloudbuildV1StepResult.
3334 3335 3336 |
# File 'lib/google/apis/run_v1/classes.rb', line 3334 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attestation_content ⇒ String
Optional. The content of the attestation to be generated.
Corresponds to the JSON property attestationContent
3322 3323 3324 |
# File 'lib/google/apis/run_v1/classes.rb', line 3322 def attestation_content @attestation_content end |
#attestation_type ⇒ String
Optional. The type of attestation to be generated.
Corresponds to the JSON property attestationType
3327 3328 3329 |
# File 'lib/google/apis/run_v1/classes.rb', line 3327 def attestation_type @attestation_type end |
#name ⇒ String
Required. The name of the result.
Corresponds to the JSON property name
3332 3333 3334 |
# File 'lib/google/apis/run_v1/classes.rb', line 3332 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3339 3340 3341 3342 3343 |
# File 'lib/google/apis/run_v1/classes.rb', line 3339 def update!(**args) @attestation_content = args[:attestation_content] if args.key?(:attestation_content) @attestation_type = args[:attestation_type] if args.key?(:attestation_type) @name = args[:name] if args.key?(:name) end |