Class: Google::Apis::IamV1::ListServiceAccountKeysResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::IamV1::ListServiceAccountKeysResponse
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/iam_v1/classes.rb,
generated/google/apis/iam_v1/representations.rb,
generated/google/apis/iam_v1/representations.rb 
Overview
The service account keys list response.
Instance Attribute Summary collapse
- 
  
    
      #keys  ⇒ Array<Google::Apis::IamV1::ServiceAccountKey> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The public keys for the service account.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListServiceAccountKeysResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListServiceAccountKeysResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListServiceAccountKeysResponse
Returns a new instance of ListServiceAccountKeysResponse
      661 662 663  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 661 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#keys ⇒ Array<Google::Apis::IamV1::ServiceAccountKey>
The public keys for the service account.
Corresponds to the JSON property keys
      659 660 661  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 659 def keys @keys end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      666 667 668  | 
    
      # File 'generated/google/apis/iam_v1/classes.rb', line 666 def update!(**args) @keys = args[:keys] if args.key?(:keys) end  |