Class: Google::Apis::VmwareengineV1::ListPrivateConnectionPeeringRoutesResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListPrivateConnectionPeeringRoutesResponse
- 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.ListPrivateConnectionPeeringRoutes
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
A token, which can be sent as
page_token
to retrieve the next page. -
#peering_routes ⇒ Array<Google::Apis::VmwareengineV1::PeeringRoute>
A list of peering routes.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListPrivateConnectionPeeringRoutesResponse
constructor
A new instance of ListPrivateConnectionPeeringRoutesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPrivateConnectionPeeringRoutesResponse
Returns a new instance of ListPrivateConnectionPeeringRoutesResponse.
1389 1390 1391 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1389 def initialize(**args) update!(**args) end |
Instance Attribute Details
#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
1382 1383 1384 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1382 def next_page_token @next_page_token end |
#peering_routes ⇒ Array<Google::Apis::VmwareengineV1::PeeringRoute>
A list of peering routes.
Corresponds to the JSON property peeringRoutes
1387 1388 1389 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1387 def peering_routes @peering_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1394 1395 1396 1397 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1394 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @peering_routes = args[:peering_routes] if args.key?(:peering_routes) end |