Class: Google::Apis::BigquerydatatransferV1::ListTransferRunsResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquerydatatransfer_v1/classes.rb,
lib/google/apis/bigquerydatatransfer_v1/representations.rb,
lib/google/apis/bigquerydatatransfer_v1/representations.rb

Overview

The returned list of pipelines in the project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListTransferRunsResponse

Returns a new instance of ListTransferRunsResponse.



510
511
512
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 510

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 ListTransferRunsRequest.page_token to request the next page of list results. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


503
504
505
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 503

def next_page_token
  @next_page_token
end

#transfer_runsArray<Google::Apis::BigquerydatatransferV1::TransferRun>

Output only. The stored pipeline transfer runs. Corresponds to the JSON property transferRuns



508
509
510
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 508

def transfer_runs
  @transfer_runs
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



515
516
517
518
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 515

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