Class: Google::Apis::SpannerV1::ListInstancesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListInstancesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb
Overview
The response for ListInstances.
Instance Attribute Summary collapse
-
#instances ⇒ Array<Google::Apis::SpannerV1::Instance>
The list of requested instances.
-
#next_page_token ⇒ String
next_page_token
can be sent in a subsequent ListInstances call to fetch more of the matching instances.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInstancesResponse
constructor
A new instance of ListInstancesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListInstancesResponse
Returns a new instance of ListInstancesResponse
1366 1367 1368 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1366 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instances ⇒ Array<Google::Apis::SpannerV1::Instance>
The list of requested instances.
Corresponds to the JSON property instances
1357 1358 1359 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1357 def instances @instances end |
#next_page_token ⇒ String
next_page_token
can be sent in a subsequent
ListInstances call to fetch more
of the matching instances.
Corresponds to the JSON property nextPageToken
1364 1365 1366 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1364 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1371 1372 1373 1374 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1371 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |