Class: Google::Apis::DatafusionV1::TimeWindow

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimeWindow

Returns a new instance of TimeWindow.



1487
1488
1489
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1487

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#end_timeString

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

Returns:

  • (String)


1479
1480
1481
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1479

def end_time
  @end_time
end

#start_timeString

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

Returns:

  • (String)


1485
1486
1487
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1485

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1492
1493
1494
1495
# File 'lib/google/apis/datafusion_v1/classes.rb', line 1492

def update!(**args)
  @end_time = args[:end_time] if args.key?(:end_time)
  @start_time = args[:start_time] if args.key?(:start_time)
end