Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListKeyValueEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListKeyValueEntriesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/apigee_v1/classes.rb,
lib/google/apis/apigee_v1/representations.rb,
lib/google/apis/apigee_v1/representations.rb
Overview
The request structure for listing key value map keys and its corresponding values.
Instance Attribute Summary collapse
-
#key_value_entries ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueEntry>
One or more key value map keys and values.
-
#next_page_token ⇒ String
Token that can be sent as
next_page_tokento retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListKeyValueEntriesResponse
constructor
A new instance of GoogleCloudApigeeV1ListKeyValueEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListKeyValueEntriesResponse
Returns a new instance of GoogleCloudApigeeV1ListKeyValueEntriesResponse.
6384 6385 6386 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6384 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key_value_entries ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueEntry>
One or more key value map keys and values.
Corresponds to the JSON property keyValueEntries
6376 6377 6378 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6376 def key_value_entries @key_value_entries end |
#next_page_token ⇒ String
Token that can be sent as next_page_token to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
6382 6383 6384 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6382 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6389 6390 6391 6392 |
# File 'lib/google/apis/apigee_v1/classes.rb', line 6389 def update!(**args) @key_value_entries = args[:key_value_entries] if args.key?(:key_value_entries) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |