Class: Google::Apis::NetworkservicesV1::ListMeshesResponse
- Inherits:
-
Object
- Object
- Google::Apis::NetworkservicesV1::ListMeshesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkservices_v1/classes.rb,
lib/google/apis/networkservices_v1/representations.rb,
lib/google/apis/networkservices_v1/representations.rb
Overview
Response returned by the ListMeshes method.
Instance Attribute Summary collapse
-
#meshes ⇒ Array<Google::Apis::NetworkservicesV1::Mesh>
List of Mesh resources.
-
#next_page_token ⇒ String
If there might be more results than those appearing in this response, then
next_page_tokenis 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.
1898 1899 1900 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 1898 def initialize(**args) update!(**args) end |
Instance Attribute Details
#meshes ⇒ Array<Google::Apis::NetworkservicesV1::Mesh>
List of Mesh resources.
Corresponds to the JSON property meshes
1889 1890 1891 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 1889 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
1896 1897 1898 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 1896 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1903 1904 1905 1906 |
# File 'lib/google/apis/networkservices_v1/classes.rb', line 1903 def update!(**args) @meshes = args[:meshes] if args.key?(:meshes) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |