Class: Google::Apis::BigquerydatatransferV1::StartManualTransferRunsRequest

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

A request to start manual transfer runs.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ StartManualTransferRunsRequest

Returns a new instance of StartManualTransferRunsRequest.



741
742
743
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 741

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

Instance Attribute Details

#requested_run_timeString

A run_time timestamp for historical data files or reports that are scheduled to be transferred by the scheduled transfer run. requested_run_time must be a past time and cannot include future time values. Corresponds to the JSON property requestedRunTime

Returns:

  • (String)


733
734
735
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 733

def requested_run_time
  @requested_run_time
end

#requested_time_rangeGoogle::Apis::BigquerydatatransferV1::TimeRange

A specification for a time range, this will request transfer runs with run_time between start_time (inclusive) and end_time (exclusive). Corresponds to the JSON property requestedTimeRange



739
740
741
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 739

def requested_time_range
  @requested_time_range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



746
747
748
749
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 746

def update!(**args)
  @requested_run_time = args[:requested_run_time] if args.key?(:requested_run_time)
  @requested_time_range = args[:requested_time_range] if args.key?(:requested_time_range)
end