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
| 537 538 539 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 537 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
| 529 530 531 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 529 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
| 535 536 537 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 535 def start_time @start_time end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 542 543 544 545 | # File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 542 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |