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.
915 916 917 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 915 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
901 902 903 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 901 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
907 908 909 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 907 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
913 914 915 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 913 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
920 921 922 923 924 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 920 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 |