Class: Google::Apis::KmsinventoryV1::GoogleCloudKmsInventoryV1ListCryptoKeysResponse
- Inherits:
-
Object
- Object
- Google::Apis::KmsinventoryV1::GoogleCloudKmsInventoryV1ListCryptoKeysResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/kmsinventory_v1/classes.rb,
lib/google/apis/kmsinventory_v1/representations.rb,
lib/google/apis/kmsinventory_v1/representations.rb
Overview
Response message for KeyDashboardService.ListCryptoKeys.
Instance Attribute Summary collapse
-
#crypto_keys ⇒ Array<Google::Apis::KmsinventoryV1::GoogleCloudKmsV1CryptoKey>
The list of CryptoKeys.
-
#next_page_token ⇒ String
The page token returned from the previous response if the next page is desired.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudKmsInventoryV1ListCryptoKeysResponse
constructor
A new instance of GoogleCloudKmsInventoryV1ListCryptoKeysResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudKmsInventoryV1ListCryptoKeysResponse
Returns a new instance of GoogleCloudKmsInventoryV1ListCryptoKeysResponse.
39 40 41 |
# File 'lib/google/apis/kmsinventory_v1/classes.rb', line 39 def initialize(**args) update!(**args) end |
Instance Attribute Details
#crypto_keys ⇒ Array<Google::Apis::KmsinventoryV1::GoogleCloudKmsV1CryptoKey>
The list of CryptoKeys.
Corresponds to the JSON property cryptoKeys
32 33 34 |
# File 'lib/google/apis/kmsinventory_v1/classes.rb', line 32 def crypto_keys @crypto_keys end |
#next_page_token ⇒ String
The page token returned from the previous response if the next page is desired.
Corresponds to the JSON property nextPageToken
37 38 39 |
# File 'lib/google/apis/kmsinventory_v1/classes.rb', line 37 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
44 45 46 47 |
# File 'lib/google/apis/kmsinventory_v1/classes.rb', line 44 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) end |