Class: Google::Apis::DatafusionV1beta1::TimeWindow
- Inherits:
-
Object
- Object
- Google::Apis::DatafusionV1beta1::TimeWindow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datafusion_v1beta1/classes.rb,
lib/google/apis/datafusion_v1beta1/representations.rb,
lib/google/apis/datafusion_v1beta1/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.
1530 1531 1532 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1530 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
1522 1523 1524 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1522 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
1528 1529 1530 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1528 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1535 1536 1537 1538 |
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1535 def update!(**args) @end_time = args[:end_time] if args.key?(:end_time) @start_time = args[:start_time] if args.key?(:start_time) end |