Class: Google::Apis::ContaineranalysisV1beta1::StepResult
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::StepResult
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/containeranalysis_v1beta1/classes.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb,
lib/google/apis/containeranalysis_v1beta1/representations.rb
Overview
StepResult is the declaration of a result for a build step.
Instance Attribute Summary collapse
-
#attestation_content_name ⇒ String
Corresponds to the JSON property
attestationContentName. -
#attestation_type ⇒ String
Corresponds to the JSON property
attestationType. -
#name ⇒ String
Corresponds to the JSON property
name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ StepResult
constructor
A new instance of StepResult.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ StepResult
Returns a new instance of StepResult.
6998 6999 7000 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6998 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attestation_content_name ⇒ String
Corresponds to the JSON property attestationContentName
6986 6987 6988 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6986 def attestation_content_name @attestation_content_name end |
#attestation_type ⇒ String
Corresponds to the JSON property attestationType
6991 6992 6993 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6991 def attestation_type @attestation_type end |
#name ⇒ String
Corresponds to the JSON property name
6996 6997 6998 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 6996 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7003 7004 7005 7006 7007 |
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 7003 def update!(**args) @attestation_content_name = args[:attestation_content_name] if args.key?(:attestation_content_name) @attestation_type = args[:attestation_type] if args.key?(:attestation_type) @name = args[:name] if args.key?(:name) end |