Class: Google::Apis::BigquerydatatransferV1::ListTransferConfigsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigquerydatatransferV1::ListTransferConfigsResponse
 
- 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_configs  ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListTransferConfigsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListTransferConfigsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTransferConfigsResponse
Returns a new instance of ListTransferConfigsResponse
| 407 408 409 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 407 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
ListTransferConfigsRequest.page_token
to request the next page of list results.
Corresponds to the JSON property nextPageToken
| 400 401 402 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 400 def next_page_token @next_page_token end | 
#transfer_configs ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferConfig>
Output only. The stored pipeline transfer configurations.
Corresponds to the JSON property transferConfigs
| 405 406 407 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 405 def transfer_configs @transfer_configs end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 412 413 414 415 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 412 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_configs = args[:transfer_configs] if args.key?(:transfer_configs) end |