Class: Google::Apis::BigquerydatatransferV1::ListTransferLogsResponse
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::ListTransferLogsResponse
- 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 transfer run messages.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
Output only.
-
#transfer_messages ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferMessage>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ListTransferLogsResponse
constructor
A new instance of ListTransferLogsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ListTransferLogsResponse
Returns a new instance of ListTransferLogsResponse
440 441 442 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 440 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
Output only. The next-pagination token. For multiple-page list results,
this token can be used as the
GetTransferRunLogRequest.page_token
to request the next page of list results.
Corresponds to the JSON property nextPageToken
433 434 435 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 433 def next_page_token @next_page_token end |
#transfer_messages ⇒ Array<Google::Apis::BigquerydatatransferV1::TransferMessage>
Output only. The stored pipeline transfer messages.
Corresponds to the JSON property transferMessages
438 439 440 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 438 def @transfer_messages end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
445 446 447 448 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 445 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @transfer_messages = args[:transfer_messages] if args.key?(:transfer_messages) end |