Class: Google::Apis::CloudiotV1beta1::PublicKeyCredential
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudiotV1beta1::PublicKeyCredential
 
- Defined in:
- generated/google/apis/cloudiot_v1beta1/classes.rb,
 generated/google/apis/cloudiot_v1beta1/representations.rb,
 generated/google/apis/cloudiot_v1beta1/representations.rb
Overview
A public key format and data.
Instance Attribute Summary collapse
- 
  
    
      #format  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The format of the key. 
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The key data. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PublicKeyCredential 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of PublicKeyCredential. 
- 
  
    
      #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) ⇒ PublicKeyCredential
Returns a new instance of PublicKeyCredential
| 779 780 781 | # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 779 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#format ⇒ String
The format of the key.
Corresponds to the JSON property format
| 772 773 774 | # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 772 def format @format end | 
#key ⇒ String
The key data.
Corresponds to the JSON property key
| 777 778 779 | # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 777 def key @key end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 784 785 786 787 | # File 'generated/google/apis/cloudiot_v1beta1/classes.rb', line 784 def update!(**args) @format = args[:format] if args.key?(:format) @key = args[:key] if args.key?(:key) end |