Class: Google::Apis::SpannerV1::ListDatabaseOperationsResponse
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SpannerV1::ListDatabaseOperationsResponse
 
 
- 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 ListDatabaseOperations.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
next_page_tokencan be sent in a subsequent ListDatabaseOperations call to fetch more of the matching metadata. - 
  
    
      #operations  ⇒ Array<Google::Apis::SpannerV1::Operation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of matching database long-running operations.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDatabaseOperationsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of ListDatabaseOperationsResponse.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ ListDatabaseOperationsResponse
Returns a new instance of ListDatabaseOperationsResponse.
      2358 2359 2360  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 2358 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#next_page_token ⇒ String
next_page_token can be sent in a subsequent ListDatabaseOperations call to
fetch more of the matching metadata.
Corresponds to the JSON property nextPageToken
      2349 2350 2351  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 2349 def next_page_token @next_page_token end  | 
  
#operations ⇒ Array<Google::Apis::SpannerV1::Operation>
The list of matching database long-running operations. Each operation's name
will be prefixed by the database's name. The operation's metadata field type 
metadata.type_url describes the type of the metadata.
Corresponds to the JSON property operations
      2356 2357 2358  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 2356 def operations @operations end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2363 2364 2365 2366  | 
    
      # File 'lib/google/apis/spanner_v1/classes.rb', line 2363 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @operations = args[:operations] if args.key?(:operations) end  |