class Google::Apis::BigquerydatatransferV1::ListTransferConfigsResponse

The returned list of pipelines in the project.

Attributes

next_page_token[RW]

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` @return [String]

transfer_configs[RW]

Output only. The stored pipeline transfer configurations. Corresponds to the JSON property `transferConfigs` @return [Array<Google::Apis::BigquerydatatransferV1::TransferConfig>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 443
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 448
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