Class: Google::Apis::VmwareengineV1::ListExternalAddressesResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListExternalAddressesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmwareengine_v1/classes.rb,
lib/google/apis/vmwareengine_v1/representations.rb,
lib/google/apis/vmwareengine_v1/representations.rb
Overview
Response message for VmwareEngine.ListExternalAddresses
Instance Attribute Summary collapse
-
#external_addresses ⇒ Array<Google::Apis::VmwareengineV1::ExternalAddress>
A list of external IP addresses.
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using wildcards.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListExternalAddressesResponse
constructor
A new instance of ListExternalAddressesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListExternalAddressesResponse
Returns a new instance of ListExternalAddressesResponse.
1030 1031 1032 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1030 def initialize(**args) update!(**args) end |
Instance Attribute Details
#external_addresses ⇒ Array<Google::Apis::VmwareengineV1::ExternalAddress>
A list of external IP addresses.
Corresponds to the JSON property externalAddresses
1016 1017 1018 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1016 def external_addresses @external_addresses end |
#next_page_token ⇒ String
A token, which can be sent as page_token
to retrieve the next page. If this
field is omitted, there are no subsequent pages.
Corresponds to the JSON property nextPageToken
1022 1023 1024 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1022 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
Locations that could not be reached when making an aggregated query using
wildcards.
Corresponds to the JSON property unreachable
1028 1029 1030 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1028 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1035 1036 1037 1038 1039 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1035 def update!(**args) @external_addresses = args[:external_addresses] if args.key?(:external_addresses) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |