Class: Google::Apis::DatafusionV1::TimeWindow
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1::TimeWindow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datafusion_v1/classes.rb,
lib/google/apis/datafusion_v1/representations.rb,
lib/google/apis/datafusion_v1/representations.rb
Overview
Represents an arbitrary window of time.
Instance Attribute Summary collapse
-
#end_time ⇒ String
Required.
-
#start_time ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ TimeWindow
constructor
A new instance of TimeWindow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ TimeWindow
Returns a new instance of TimeWindow.
1388 1389 1390 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1388 def initialize(**args) update!(**args) end |
Instance Attribute Details
#end_time ⇒ String
Required. The end time of the time window provided in RFC 3339 format. The end time should take place after the
start time. Example: "2024-01-02T12:04:06-06:00"
Corresponds to the JSON property endTime
1380 1381 1382 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1380 def end_time @end_time end |
#start_time ⇒ String
Required. The start time of the time window provided in RFC 3339 format. Example: "2024-01-01T12:04:06-04:00"
Corresponds to the JSON property startTime
1386 1387 1388 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1386 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1393 1394 1395 1396 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1393 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |