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

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_sourcesArray<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_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)


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