Class: Google::Apis::NetappV1::ListKmsConfigsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetappV1::ListKmsConfigsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/netapp_v1/classes.rb,
lib/google/apis/netapp_v1/representations.rb,
lib/google/apis/netapp_v1/representations.rb
Overview
ListKmsConfigsResponse is the response to a ListKmsConfigsRequest.
Instance Attribute Summary collapse
-
#kms_configs ⇒ Array<Google::Apis::NetappV1::KmsConfig>
The list of KmsConfigs Corresponds to the JSON property
kmsConfigs
. -
#next_page_token ⇒ String
A token identifying a page of results the server should return.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListKmsConfigsResponse
constructor
A new instance of ListKmsConfigsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListKmsConfigsResponse
Returns a new instance of ListKmsConfigsResponse.
806 807 808 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 806 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kms_configs ⇒ Array<Google::Apis::NetappV1::KmsConfig>
The list of KmsConfigs
Corresponds to the JSON property kmsConfigs
794 795 796 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 794 def kms_configs @kms_configs end |
#next_page_token ⇒ String
A token identifying a page of results the server should return.
Corresponds to the JSON property nextPageToken
799 800 801 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 799 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
804 805 806 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 804 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
811 812 813 814 815 |
# File 'lib/google/apis/netapp_v1/classes.rb', line 811 def update!(**args) @kms_configs = args[:kms_configs] if args.key?(:kms_configs) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |