Class: Google::Apis::SpannerV1::ListDatabasesResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::ListDatabasesResponse
 
 
- 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 ListDatabases.
Instance Attribute Summary collapse
- 
  
    
      #databases  ⇒ Array<Google::Apis::SpannerV1::Database> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Databases that matched the request.
 - 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
next_page_tokencan be sent in a subsequent ListDatabases call to fetch more of the matching databases. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDatabasesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListDatabasesResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDatabasesResponse
Returns a new instance of ListDatabasesResponse
      1207 1208 1209  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 1207 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#databases ⇒ Array<Google::Apis::SpannerV1::Database>
Databases that matched the request.
Corresponds to the JSON property databases
      1198 1199 1200  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 1198 def databases @databases end  | 
  
#next_page_token ⇒ String
next_page_token can be sent in a subsequent
ListDatabases call to fetch more
of the matching databases.
Corresponds to the JSON property nextPageToken
      1205 1206 1207  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 1205 def next_page_token @next_page_token end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      1212 1213 1214 1215  | 
    
      # File 'generated/google/apis/spanner_v1/classes.rb', line 1212 def update!(**args) @databases = args[:databases] if args.key?(:databases) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end  |