class Google::Apis::BigquerydatatransferV1::ScheduleTransferRunsRequest

A request to schedule transfer runs for a time range.

Attributes

end_time[RW]

Required. End time of the range of transfer runs. For example, `“2017-05-30T00: 00:00+00:00”`. Corresponds to the JSON property `endTime` @return [String]

start_time[RW]

Required. Start time of the range of transfer runs. For example, `“2017-05- 25T00:00:00+00:00”`. Corresponds to the JSON property `startTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 612
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/bigquerydatatransfer_v1/classes.rb, line 617
def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
end