Class: Google::Apis::BigquerydatatransferV1::ListTransferRunsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigquerydatatransferV1::ListTransferRunsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquerydatatransfer_v1/classes.rb,
 generated/google/apis/bigquerydatatransfer_v1/representations.rb,
 generated/google/apis/bigquerydatatransfer_v1/representations.rb
Overview
The returned list of pipelines in the project.
Instance Attribute Summary collapse
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #transfer_runs  ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferRun> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTransferRunsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListTransferRunsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTransferRunsResponse
Returns a new instance of ListTransferRunsResponse
| 463 464 465 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 463 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#next_page_token ⇒ String
Output only. The next-pagination token. For multiple-page list results,
this token can be used as the
ListTransferRunsRequest.page_token
to request the next page of list results.
Corresponds to the JSON property nextPageToken
| 456 457 458 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 456 def next_page_token @next_page_token end | 
#transfer_runs ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferRun>
Output only. The stored pipeline transfer runs.
Corresponds to the JSON property transferRuns
| 461 462 463 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 461 def transfer_runs @transfer_runs end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 468 469 470 471 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 468 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_runs = args[:transfer_runs] if args.key?(:transfer_runs) end |