class Google::Apis::ContaineranalysisV1alpha1::EnvelopeSignature

A DSSE signature

Attributes

keyid[RW]

A reference id to the key being used for signing Corresponds to the JSON property `keyid` @return [String]

sig[RW]

The signature itself Corresponds to the JSON property `sig` NOTE: Values are automatically base64 encoded/decoded in the client library. @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/containeranalysis_v1alpha1/classes.rb, line 1320
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 1325
def update!(**args)
  @keyid = args[:keyid] if args.key?(:keyid)
  @sig = args[:sig] if args.key?(:sig)
end