class Google::Apis::CloudkmsV1::ListKeyRingsResponse
Response message for KeyManagementService.ListKeyRings.
Attributes
key_rings[RW]
The list of KeyRings. Corresponds to the JSON property `keyRings` @return [Array<Google::Apis::CloudkmsV1::KeyRing>]
next_page_token[RW]
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` @return [String]
total_size[RW]
The total number of KeyRings that matched the query. Corresponds to the JSON property `totalSize` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudkms_v1/classes.rb, line 1399 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudkms_v1/classes.rb, line 1404 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