Class: Google::Apis::CloudkmsV1::ListCryptoKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::CloudkmsV1::ListCryptoKeysResponse
- 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.ListCryptoKeys.
Instance Attribute Summary collapse
-
#crypto_keys ⇒ Array<Google::Apis::CloudkmsV1::CryptoKey>
The list of CryptoKeys.
-
#next_page_token ⇒ String
A token to retrieve next page of results.
-
#total_size ⇒ Fixnum
The total number of CryptoKeys that matched the query.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListCryptoKeysResponse
constructor
A new instance of ListCryptoKeysResponse.
-
#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) ⇒ ListCryptoKeysResponse
Returns a new instance of ListCryptoKeysResponse
790 791 792 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 790 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crypto_keys ⇒ Array<Google::Apis::CloudkmsV1::CryptoKey>
The list of CryptoKeys.
Corresponds to the JSON property cryptoKeys
777 778 779 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 777 def crypto_keys @crypto_keys end |
#next_page_token ⇒ String
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
783 784 785 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 783 def next_page_token @next_page_token end |
#total_size ⇒ Fixnum
The total number of CryptoKeys that matched the query.
Corresponds to the JSON property totalSize
788 789 790 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 788 def total_size @total_size end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
795 796 797 798 799 |
# File 'generated/google/apis/cloudkms_v1/classes.rb', line 795 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 |