Class: Google::Apis::BigquerydatatransferV1::ListTransferConfigsResponse

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

The returned list of pipelines in the project.

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) ⇒ ListTransferConfigsResponse

Returns a new instance of ListTransferConfigsResponse.



433
434
435
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 433

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

Instance Attribute Details

#next_page_tokenString

Output only. The next-pagination token. For multiple-page list results, this token can be used as the ListTransferConfigsRequest.page_token to request the next page of list results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


426
427
428
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 426

def next_page_token
  @next_page_token
end

#transfer_configsArray<Google::Apis::BigquerydatatransferV1::TransferConfig>

Output only. The stored pipeline transfer configurations. Corresponds to the JSON property transferConfigs



431
432
433
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 431

def transfer_configs
  @transfer_configs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



438
439
440
441
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 438

def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @transfer_configs = args[:transfer_configs] if args.key?(:transfer_configs)
end