Class: Google::Apis::SpannerV1::ListInstancesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInstancesResponse

Returns a new instance of ListInstancesResponse.



2097
2098
2099
# File 'lib/google/apis/spanner_v1/classes.rb', line 2097

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#instancesArray<Google::Apis::SpannerV1::Instance>

The list of requested instances. Corresponds to the JSON property instances



2083
2084
2085
# File 'lib/google/apis/spanner_v1/classes.rb', line 2083

def instances
  @instances
end

#next_page_tokenString

next_page_token can be sent in a subsequent ListInstances call to fetch more of the matching instances. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2089
2090
2091
# File 'lib/google/apis/spanner_v1/classes.rb', line 2089

def next_page_token
  @next_page_token
end

#unreachableArray<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

Returns:

  • (Array<String>)


2095
2096
2097
# File 'lib/google/apis/spanner_v1/classes.rb', line 2095

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2102
2103
2104
2105
2106
# File 'lib/google/apis/spanner_v1/classes.rb', line 2102

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