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.
Constructor Details
#initialize(**args) ⇒ ListDataSourcesResponse
Returns a new instance of ListDataSourcesResponse.
370 371 372 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 370 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
361 362 363 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 361 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
368 369 370 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 368 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
375 376 377 378 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 375 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 |