Class: Google::Apis::BigquerydatatransferV1::ListTransferLogsResponse

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 transfer run messages.

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

Returns a new instance of ListTransferLogsResponse



443
444
445
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 443

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

Instance Attribute Details

#next_page_tokenString

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. Output only. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


435
436
437
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 435

def next_page_token
  @next_page_token
end

#transfer_messagesArray<Google::Apis::BigquerydatatransferV1::TransferMessage>

The stored pipeline transfer messages. Output only. Corresponds to the JSON property transferMessages



441
442
443
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 441

def transfer_messages
  @transfer_messages
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



448
449
450
451
# File 'generated/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_messages = args[:transfer_messages] if args.key?(:transfer_messages)
end