Class: Google::Apis::VmwareengineV1::ListExternalAddressesResponse

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

Instance Method Summary collapse

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_addressesArray<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_tokenString

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

Returns:

  • (String)


1022
1023
1024
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1022

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached when making an aggregated query using wildcards. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


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