Class: Google::Apis::VmwareengineV1::ListPeeringRoutesResponse
- Inherits:
-
Object
- Object
- Google::Apis::VmwareengineV1::ListPeeringRoutesResponse
- 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.ListPeeringRoutes
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) ⇒ ListPeeringRoutesResponse
constructor
A new instance of ListPeeringRoutesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListPeeringRoutesResponse
Returns a new instance of ListPeeringRoutesResponse.
1330 1331 1332 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1330 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
1323 1324 1325 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1323 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
1328 1329 1330 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1328 def peering_routes @peering_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1335 1336 1337 1338 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1335 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 |