Class: Google::Apis::NetworkconnectivityV1::ListRegionalEndpointsResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkconnectivityV1::ListRegionalEndpointsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkconnectivity_v1/classes.rb,
lib/google/apis/networkconnectivity_v1/representations.rb,
lib/google/apis/networkconnectivity_v1/representations.rb
Overview
Response for ListRegionalEndpoints.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The next pagination token in the List response.
-
#regional_endpoints ⇒ Array<Google::Apis::NetworkconnectivityV1::RegionalEndpoint>
Regional endpoints to be returned.
-
#unreachable ⇒ Array<String>
Locations that could not be reached.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListRegionalEndpointsResponse
constructor
A new instance of ListRegionalEndpointsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListRegionalEndpointsResponse
Returns a new instance of ListRegionalEndpointsResponse.
1471 1472 1473 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1471 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
The next pagination token in the List response. It should be used as
page_token for the following request. An empty value means no more result.
Corresponds to the JSON property nextPageToken
1459 1460 1461 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1459 def next_page_token @next_page_token end |
#regional_endpoints ⇒ Array<Google::Apis::NetworkconnectivityV1::RegionalEndpoint>
Regional endpoints to be returned.
Corresponds to the JSON property regionalEndpoints
1464 1465 1466 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1464 def regional_endpoints @regional_endpoints end |
#unreachable ⇒ Array<String>
Locations that could not be reached.
Corresponds to the JSON property unreachable
1469 1470 1471 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1469 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1476 1477 1478 1479 1480 |
# File 'lib/google/apis/networkconnectivity_v1/classes.rb', line 1476 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @regional_endpoints = args[:regional_endpoints] if args.key?(:regional_endpoints) @unreachable = args[:unreachable] if args.key?(:unreachable) end |