class Google::Apis::BigquerydatatransferV1::ListDataSourcesResponse
Returns list of supported data sources and their metadata.
Attributes
data_sources[RW]
List of supported data sources and their transfer settings. Corresponds to the JSON property `dataSources` @return [Array<Google::Apis::BigquerydatatransferV1::DataSource>]
next_page_token[RW]
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` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 391 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 396 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