Class: Google::Apis::SpannerV1::ListInstancesResponse
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::ListInstancesResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/spanner_v1/classes.rb,
lib/google/apis/spanner_v1/representations.rb,
lib/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. -
#unreachable ⇒ Array<String>
The list of unreachable instances.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListInstancesResponse
constructor
A new instance of ListInstancesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ListInstancesResponse
Returns a new instance of ListInstancesResponse.
2468 2469 2470 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2468 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
2454 2455 2456 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2454 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
2460 2461 2462 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2460 def next_page_token @next_page_token end |
#unreachable ⇒ Array<String>
The list of unreachable instances. It includes the names of instances whose
metadata could not be retrieved within instance_deadline.
Corresponds to the JSON property unreachable
2466 2467 2468 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2466 def unreachable @unreachable end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2473 2474 2475 2476 2477 |
# File 'lib/google/apis/spanner_v1/classes.rb', line 2473 def update!(**args) @instances = args[:instances] if args.key?(:instances) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @unreachable = args[:unreachable] if args.key?(:unreachable) end |