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.
1215 1216 1217 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1215 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
1208 1209 1210 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1208 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
1213 1214 1215 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1213 def peering_routes @peering_routes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1220 1221 1222 1223 |
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1220 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 |