class Google::Apis::ContaineranalysisV1alpha1::Envelope

MUST match github.com/secure-systems-lab/dsse/blob/master/envelope. proto. An authenticated message of arbitrary type.

Attributes

payload[RW]

The bytes being signed Corresponds to the JSON property `payload` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

payload_type[RW]

The type of payload being signed Corresponds to the JSON property `payloadType` @return [String]

signatures[RW]

The signatures over the payload Corresponds to the JSON property `signatures` @return [Array<Google::Apis::ContaineranalysisV1alpha1::EnvelopeSignature>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1293
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1298
def update!(**args)
  @payload = args[:payload] if args.key?(:payload)
  @payload_type = args[:payload_type] if args.key?(:payload_type)
  @signatures = args[:signatures] if args.key?(:signatures)
end