Class: Google::Apis::BigquerydatatransferV1::ScheduleTransferRunsRequest
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::ScheduleTransferRunsRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquerydatatransfer_v1/classes.rb,
generated/google/apis/bigquerydatatransfer_v1/representations.rb,
generated/google/apis/bigquerydatatransfer_v1/representations.rb
Overview
A request to schedule transfer runs for a time range.
Instance Attribute Summary collapse
-
#end_time ⇒ String
End time of the range of transfer runs.
-
#start_time ⇒ String
Start time of the range of transfer runs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ScheduleTransferRunsRequest
constructor
A new instance of ScheduleTransferRunsRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ScheduleTransferRunsRequest
Returns a new instance of ScheduleTransferRunsRequest
538 539 540 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 538 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
End time of the range of transfer runs. For example,
"2017-05-30T00:00:00+00:00"
.
Corresponds to the JSON property endTime
530 531 532 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 530 def end_time @end_time end |
#start_time ⇒ String
Start time of the range of transfer runs. For example,
"2017-05-25T00:00:00+00:00"
.
Corresponds to the JSON property startTime
536 537 538 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 536 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
543 544 545 546 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 543 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |