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.



672
673
674
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 672

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)


664
665
666
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 664

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



670
671
672
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 670

def requested_time_range
  @requested_time_range
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



677
678
679
680
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 677

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