Class: Google::Apis::NetworkservicesV1beta1::ListMeshesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkservicesV1beta1::ListMeshesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkservices_v1beta1/classes.rb,
lib/google/apis/networkservices_v1beta1/representations.rb,
lib/google/apis/networkservices_v1beta1/representations.rb
Overview
Response returned by the ListMeshes method.
Instance Attribute Summary collapse
-
#meshes ⇒ Array<Google::Apis::NetworkservicesV1beta1::Mesh>
List of Mesh resources.
-
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListMeshesResponse
constructor
A new instance of ListMeshesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListMeshesResponse
Returns a new instance of ListMeshesResponse.
2454 2455 2456 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 2454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#meshes ⇒ Array<Google::Apis::NetworkservicesV1beta1::Mesh>
List of Mesh resources.
Corresponds to the JSON property meshes
2445 2446 2447 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 2445 def meshes @meshes end |
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_token
is included. To get the next set of results, call this method
again using the value of next_page_token
as page_token
.
Corresponds to the JSON property nextPageToken
2452 2453 2454 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 2452 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2459 2460 2461 2462 |
# File 'lib/google/apis/networkservices_v1beta1/classes.rb', line 2459 def update!(**args) @meshes = args[:meshes] if args.key?(:meshes) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |