Class: Google::Apis::SpannerV1::ListInstanceConfigsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SpannerV1::ListInstanceConfigsResponse
 
- 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 ListInstanceConfigs.
Instance Attribute Summary collapse
- 
  
    
      #instance_configs  ⇒ Array<Google::Apis::SpannerV1::InstanceConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of requested instance configurations. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    next_page_tokencan be sent in a subsequent ListInstanceConfigs call to fetch more of the matching instance configurations.
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListInstanceConfigsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListInstanceConfigsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListInstanceConfigsResponse
Returns a new instance of ListInstanceConfigsResponse
| 1179 1180 1181 | # File 'generated/google/apis/spanner_v1/classes.rb', line 1179 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#instance_configs ⇒ Array<Google::Apis::SpannerV1::InstanceConfig>
The list of requested instance configurations.
Corresponds to the JSON property instanceConfigs
| 1170 1171 1172 | # File 'generated/google/apis/spanner_v1/classes.rb', line 1170 def instance_configs @instance_configs end | 
#next_page_token ⇒ String
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
| 1177 1178 1179 | # File 'generated/google/apis/spanner_v1/classes.rb', line 1177 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1184 1185 1186 1187 | # File 'generated/google/apis/spanner_v1/classes.rb', line 1184 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 |