Class: Google::Apis::BigquerydatatransferV1::ListDataSourcesResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::BigquerydatatransferV1::ListDataSourcesResponse
 
- 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
Returns list of supported data sources and their metadata.
Instance Attribute Summary collapse
- 
  
    
      #data_sources  ⇒ Array<Google::Apis::BigquerydatatransferV1::DataSource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    List of supported data sources and their transfer settings. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ListDataSourcesResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ListDataSourcesResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListDataSourcesResponse
Returns a new instance of ListDataSourcesResponse
| 354 355 356 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 354 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#data_sources ⇒ Array<Google::Apis::BigquerydatatransferV1::DataSource>
List of supported data sources and their transfer settings.
Corresponds to the JSON property dataSources
| 344 345 346 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 344 def data_sources @data_sources end | 
#next_page_token ⇒ String
Output only. The next-pagination token. For multiple-page list results,
this token can be used as the
ListDataSourcesRequest.page_token
to request the next page of list results.
Corresponds to the JSON property nextPageToken
| 352 353 354 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 352 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 359 360 361 362 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 359 def update!(**args) @data_sources = args[:data_sources] if args.key?(:data_sources) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |