class Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListNatAddressesResponse
Response for ListNatAddresses.
Attributes
nat_addresses[RW]
List of NAT Addresses for the instance. Corresponds to the JSON property `natAddresses` @return [Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1NatAddress>]
next_page_token[RW]
Page token that you can include in a ListNatAddresses request to retrieve the next page of content. If omitted, no subsequent pages exist. Corresponds to the JSON property `nextPageToken` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 4463 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 4468 def update!(**args) @nat_addresses = args[:nat_addresses] if args.key?(:nat_addresses) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end