Class: Google::Apis::CloudkmsV1::ListKeyRingsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudkmsV1::ListKeyRingsResponse
 
- Defined in:
- generated/google/apis/cloudkms_v1/classes.rb,
 generated/google/apis/cloudkms_v1/representations.rb,
 generated/google/apis/cloudkms_v1/representations.rb
Overview
Response message for KeyManagementService.ListKeyRings.
Instance Attribute Summary collapse
- 
  
    
      #key_rings  ⇒ Array<Google::Apis::CloudkmsV1::KeyRing> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of KeyRings. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token to retrieve next page of results. 
- 
  
    
      #total_size  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The total number of KeyRings that matched the query. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListKeyRingsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListKeyRingsResponse. 
- 
  
    
      #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) ⇒ ListKeyRingsResponse
Returns a new instance of ListKeyRingsResponse
| 543 544 545 | # File 'generated/google/apis/cloudkms_v1/classes.rb', line 543 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#key_rings ⇒ Array<Google::Apis::CloudkmsV1::KeyRing>
The list of KeyRings.
Corresponds to the JSON property keyRings
| 530 531 532 | # File 'generated/google/apis/cloudkms_v1/classes.rb', line 530 def key_rings @key_rings end | 
#next_page_token ⇒ String
A token to retrieve next page of results. Pass this value in
ListKeyRingsRequest.page_token to retrieve the next page of results.
Corresponds to the JSON property nextPageToken
| 536 537 538 | # File 'generated/google/apis/cloudkms_v1/classes.rb', line 536 def next_page_token @next_page_token end | 
#total_size ⇒ Fixnum
The total number of KeyRings that matched the query.
Corresponds to the JSON property totalSize
| 541 542 543 | # File 'generated/google/apis/cloudkms_v1/classes.rb', line 541 def total_size @total_size end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 548 549 550 551 552 | # File 'generated/google/apis/cloudkms_v1/classes.rb', line 548 def update!(**args) @key_rings = args[:key_rings] if args.key?(:key_rings) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @total_size = args[:total_size] if args.key?(:total_size) end |