Class: Google::Apis::BigquerydatatransferV1::ScheduleTransferRunsRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::ScheduleTransferRunsRequest
- 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 schedule transfer runs for a time range.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Required.
-
#start_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScheduleTransferRunsRequest
constructor
A new instance of ScheduleTransferRunsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ScheduleTransferRunsRequest
Returns a new instance of ScheduleTransferRunsRequest.
694 695 696 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 694 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Required. End time of the range of transfer runs. For example, "2017-05-30T00:
00:00+00:00"
.
Corresponds to the JSON property endTime
686 687 688 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 686 def end_time @end_time end |
#start_time ⇒ String
Required. Start time of the range of transfer runs. For example, "2017-05-
25T00:00:00+00:00"
.
Corresponds to the JSON property startTime
692 693 694 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 692 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
699 700 701 702 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 699 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |