Class: Google::Apis::BigquerydatatransferV1::ListDataSourcesResponse

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ListDataSourcesResponse

Returns a new instance of ListDataSourcesResponse.



380
381
382
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 380

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#data_sourcesArray<Google::Apis::BigquerydatatransferV1::DataSource>

List of supported data sources and their transfer settings. Corresponds to the JSON property dataSources



370
371
372
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 370

def data_sources
  @data_sources
end

#next_page_tokenString

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

Returns:

  • (String)


378
379
380
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 378

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



385
386
387
388
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 385

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