Class: Google::Apis::ContaineranalysisV1beta1::Build

Inherits:
Object
  • Object
show all
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

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Build

Returns a new instance of Build.



553
554
555
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 553

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#builder_versionString

Required. Immutable. Version of the builder which produced this build. Corresponds to the JSON property builderVersion

Returns:

  • (String)


546
547
548
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 546

def builder_version
  @builder_version
end

#signatureGoogle::Apis::ContaineranalysisV1beta1::BuildSignature

Message encapsulating the signature of the verified build. Corresponds to the JSON property signature



551
552
553
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 551

def signature
  @signature
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



558
559
560
561
# File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 558

def update!(**args)
  @builder_version = args[:builder_version] if args.key?(:builder_version)
  @signature = args[:signature] if args.key?(:signature)
end