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.
607 608 609 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 607 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
599 600 601 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 599 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
605 606 607 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 605 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
612 613 614 615 |
# File 'lib/google/apis/bigquerydatatransfer_v1/classes.rb', line 612 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |