Class: Google::Apis::VmwareengineV1::ListPeeringRoutesResponse

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListPeeringRoutesResponse

Returns a new instance of ListPeeringRoutesResponse.



1856
1857
1858
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1856

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)


1849
1850
1851
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1849

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



1854
1855
1856
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1854

def peering_routes
  @peering_routes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1861
1862
1863
1864
# File 'lib/google/apis/vmwareengine_v1/classes.rb', line 1861

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