Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListNatAddressesResponse
- Inherits:
-
Object
- Object
- Google::Apis::ApigeeV1::GoogleCloudApigeeV1ListNatAddressesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/apigee_v1/classes.rb,
generated/google/apis/apigee_v1/representations.rb,
generated/google/apis/apigee_v1/representations.rb
Overview
Response for ListNatAddresses.
Instance Attribute Summary collapse
-
#nat_addresses ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1NatAddress>
List of NAT Addresses for the instance.
-
#next_page_token ⇒ String
Page token that you can include in a ListNatAddresses request to retrieve the next page of content.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudApigeeV1ListNatAddressesResponse
constructor
A new instance of GoogleCloudApigeeV1ListNatAddressesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudApigeeV1ListNatAddressesResponse
Returns a new instance of GoogleCloudApigeeV1ListNatAddressesResponse.
3830 3831 3832 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3830 def initialize(**args) update!(**args) end |
Instance Attribute Details
#nat_addresses ⇒ Array<Google::Apis::ApigeeV1::GoogleCloudApigeeV1NatAddress>
List of NAT Addresses for the instance.
Corresponds to the JSON property natAddresses
3822 3823 3824 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3822 def nat_addresses @nat_addresses end |
#next_page_token ⇒ String
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
3828 3829 3830 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3828 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3835 3836 3837 3838 |
# File 'generated/google/apis/apigee_v1/classes.rb', line 3835 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 |