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

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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListInstancesResponse

Returns a new instance of ListInstancesResponse



2365
2366
2367
# File 'generated/google/apis/spanner_v1/classes.rb', line 2365

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



2363
2364
2365
# File 'generated/google/apis/spanner_v1/classes.rb', line 2363

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)


2358
2359
2360
# File 'generated/google/apis/spanner_v1/classes.rb', line 2358

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2370
2371
2372
2373
# File 'generated/google/apis/spanner_v1/classes.rb', line 2370

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @instances = args[:instances] if args.key?(:instances)
end