class Google::Apis::CloudkmsV1::ListCryptoKeysResponse

Response message for KeyManagementService.ListCryptoKeys.

Attributes

crypto_keys[RW]

The list of CryptoKeys. Corresponds to the JSON property `cryptoKeys` @return [Array<Google::Apis::CloudkmsV1::CryptoKey>]

next_page_token[RW]

A token to retrieve next page of results. Pass this value in ListCryptoKeysRequest.page_token to retrieve the next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

total_size[RW]

The total number of CryptoKeys 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 1335
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 1340
def update!(**args)
  @crypto_keys = args[:crypto_keys] if args.key?(:crypto_keys)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
end