Class: Google::Apis::VmwareengineV1::ListPrivateConnectionPeeringRoutesResponse

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.ListPrivateConnectionPeeringRoutes

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListPrivateConnectionPeeringRoutesResponse

Returns a new instance of ListPrivateConnectionPeeringRoutesResponse.



1249
1250
1251
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1249

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#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)


1242
1243
1244
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1242

def next_page_token
  @next_page_token
end

#peering_routesArray<Google::Apis::VmwareengineV1::PeeringRoute>

A list of peering routes. Corresponds to the JSON property peeringRoutes



1247
1248
1249
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1247

def peering_routes
  @peering_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1254
1255
1256
1257
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1254

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