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.
1757 1758 1759 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1757 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
1749 1750 1751 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1749 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
1755 1756 1757 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1755 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1762 1763 1764 1765 |
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1762 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |