class Google::Apis::SpannerV1::ListInstancesResponse
The response for ListInstances.
Attributes
instances[RW]
The list of requested instances. Corresponds to the JSON property `instances` @return [Array<Google::Apis::SpannerV1::Instance>]
next_page_token[RW]
`next_page_token` can be sent in a subsequent ListInstances call to fetch more of the matching instances. Corresponds to the JSON property `nextPageToken` @return [String]
unreachable[RW]
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` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 2130 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/spanner_v1/classes.rb, line 2135 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