Class: Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1IntotoSignature
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ContaineranalysisV1beta1::GrafeasV1beta1IntotoSignature
 
 
- 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
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.
 
Constructor Details
#initialize(**args) ⇒ GrafeasV1beta1IntotoSignature
Returns a new instance of GrafeasV1beta1IntotoSignature.
      4185 4186 4187  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4185 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#keyid ⇒ String
Corresponds to the JSON property keyid
      4178 4179 4180  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4178 def keyid @keyid end  | 
  
#sig ⇒ String
Corresponds to the JSON property sig
      4183 4184 4185  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4183 def sig @sig end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4190 4191 4192 4193  | 
    
      # File 'lib/google/apis/containeranalysis_v1beta1/classes.rb', line 4190 def update!(**args) @keyid = args[:keyid] if args.key?(:keyid) @sig = args[:sig] if args.key?(:sig) end  |