class Google::Apis::BigquerydatatransferV1::ListTransferRunsResponse
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 `ListTransferRunsRequest.page_token` to request the next page of list results. Corresponds to the JSON property `nextPageToken` @return [String]
transfer_runs[RW]
Output only. The stored pipeline transfer runs. Corresponds to the JSON property `transferRuns` @return [Array<Google::Apis::BigquerydatatransferV1::TransferRun>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 497 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 502 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_runs = args[:transfer_runs] if args.key?(:transfer_runs) end