Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListKeyValueEntriesResponse

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1ListKeyValueEntriesResponse

Returns a new instance of GoogleCloudApigeeV1ListKeyValueEntriesResponse.



6290
6291
6292
# File 'lib/google/apis/apigee_v1/classes.rb', line 6290

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

Instance Attribute Details

#key_value_entriesArray<Google::Apis::ApigeeV1::GoogleCloudApigeeV1KeyValueEntry>

One or more key value map keys and values. Corresponds to the JSON property keyValueEntries



6282
6283
6284
# File 'lib/google/apis/apigee_v1/classes.rb', line 6282

def key_value_entries
  @key_value_entries
end

#next_page_tokenString

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

Returns:

  • (String)


6288
6289
6290
# File 'lib/google/apis/apigee_v1/classes.rb', line 6288

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6295
6296
6297
6298
# File 'lib/google/apis/apigee_v1/classes.rb', line 6295

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