class Google::Apis::CloudkmsV1::ListCryptoKeyVersionsResponse

Response message for KeyManagementService.ListCryptoKeyVersions.

Attributes

crypto_key_versions[RW]

The list of CryptoKeyVersions. Corresponds to the JSON property `cryptoKeyVersions` @return [Array<Google::Apis::CloudkmsV1::CryptoKeyVersion>]

next_page_token[RW]

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

total_size[RW]

The total number of CryptoKeyVersions 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 1303
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 1308
def update!(**args)
  @crypto_key_versions = args[:crypto_key_versions] if args.key?(:crypto_key_versions)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @total_size = args[:total_size] if args.key?(:total_size)
end