Class: Google::Apis::BigquerydatatransferV1::StartManualTransferRunsRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::StartManualTransferRunsRequest
- 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
-
#requested_run_time ⇒ String
A run_time timestamp for historical data files or reports that are scheduled to be transferred by the scheduled transfer run.
-
#requested_time_range ⇒ Google::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).
Instance Method Summary collapse
-
#initialize(**args) ⇒ StartManualTransferRunsRequest
constructor
A new instance of StartManualTransferRunsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_time ⇒ String
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
733 734 735 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 733 def requested_run_time @requested_run_time end |
#requested_time_range ⇒ Google::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 |