Class: Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1IntotoSignature
- Inherits:
-
Object
- Object
- Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1IntotoSignature
- Defined in:
- generated/google/apis/containeranalysis_v1beta1/classes.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb,
generated/google/apis/containeranalysis_v1beta1/representations.rb
Overview
A signature object consists of the KeyID used and the signature itself.
Instance Attribute Summary collapse
-
#keyid ⇒ String
Corresponds to the JSON property
keyid
. -
#sig ⇒ String
Corresponds to the JSON property
sig
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GrafeasV1beta1IntotoSignature
constructor
A new instance of GrafeasV1beta1IntotoSignature.
-
#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) ⇒ GrafeasV1beta1IntotoSignature
Returns a new instance of GrafeasV1beta1IntotoSignature.
1621 1622 1623 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1621 def initialize(**args) update!(**args) end |
Instance Attribute Details
#keyid ⇒ String
Corresponds to the JSON property keyid
1614 1615 1616 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1614 def keyid @keyid end |
#sig ⇒ String
Corresponds to the JSON property sig
1619 1620 1621 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1619 def sig @sig end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1626 1627 1628 1629 |
# File 'generated/google/apis/containeranalysis_v1beta1/classes.rb', line 1626 def update!(**args) @keyid = args[:keyid] if args.key?(:keyid) @sig = args[:sig] if args.key?(:sig) end |