Class: Google::Apis::ContaineranalysisV1beta1::Build
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::Build
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
Note holding the version of the provider's builder and the signature of the provenance message in the build details occurrence.
Instance Attribute Summary collapse
-
#builder_version ⇒ String
Required.
-
#signature ⇒ Google::Apis::ContaineranalysisV1beta1::BuildSignature
Message encapsulating the signature of the verified build.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Build
constructor
A new instance of Build.
-
#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) ⇒ Build
Returns a new instance of Build
432 433 434 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 432 def initialize(**args) update!(**args) end |
Instance Attribute Details
#builder_version ⇒ String
Required. Immutable. Version of the builder which produced this build.
Corresponds to the JSON property builderVersion
425 426 427 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 425 def builder_version @builder_version end |
#signature ⇒ Google::Apis::ContaineranalysisV1beta1::BuildSignature
Message encapsulating the signature of the verified build.
Corresponds to the JSON property signature
430 431 432 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 430 def signature @signature end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
437 438 439 440 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 437 def update!(**args) @builder_version = args[:builder_version] if args.key?(:builder_version) @signature = args[:signature] if args.key?(:signature) end |