class Google::Apis::SpannerV1::ListInstanceConfigsResponse
The response for ListInstanceConfigs.
Attributes
instance_configs[RW]
The list of requested instance configurations. Corresponds to the JSON property `instanceConfigs` @return [Array<Google::Apis::SpannerV1::InstanceConfig>]
next_page_token[RW]
`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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/spanner_v1/classes.rb, line 2098 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 2103 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