Class: Google::Apis::SpannerV1::ListInstanceConfigsResponse

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 ListInstanceConfigs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListInstanceConfigsResponse

Returns a new instance of ListInstanceConfigsResponse.



2436
2437
2438
# File 'lib/google/apis/spanner_v1/classes.rb', line 2436

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

Instance Attribute Details

#instance_configsArray<Google::Apis::SpannerV1::InstanceConfig>

The list of requested instance configurations. Corresponds to the JSON property instanceConfigs



2428
2429
2430
# File 'lib/google/apis/spanner_v1/classes.rb', line 2428

def instance_configs
  @instance_configs
end

#next_page_tokenString

next_page_token can be sent in a subsequent ListInstanceConfigs call to fetch more of the matching instance configurations. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


2434
2435
2436
# File 'lib/google/apis/spanner_v1/classes.rb', line 2434

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2441
2442
2443
2444
# File 'lib/google/apis/spanner_v1/classes.rb', line 2441

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