Class: Google::Apis::NetappV1::ListKmsConfigsResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListKmsConfigsResponse

Returns a new instance of ListKmsConfigsResponse.



1738
1739
1740
# File 'lib/google/apis/netapp_v1/classes.rb', line 1738

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kms_configsArray<Google::Apis::NetappV1::KmsConfig>

The list of KmsConfigs Corresponds to the JSON property kmsConfigs



1726
1727
1728
# File 'lib/google/apis/netapp_v1/classes.rb', line 1726

def kms_configs
  @kms_configs
end

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


1731
1732
1733
# File 'lib/google/apis/netapp_v1/classes.rb', line 1731

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


1736
1737
1738
# File 'lib/google/apis/netapp_v1/classes.rb', line 1736

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1743
1744
1745
1746
1747
# File 'lib/google/apis/netapp_v1/classes.rb', line 1743

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