Class: Google::Apis::DatafusionV1beta1::TimeWindow

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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TimeWindow

Returns a new instance of TimeWindow.



1892
1893
1894
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1892

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)


1884
1885
1886
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1884

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)


1890
1891
1892
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1890

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1897
1898
1899
1900
# File 'lib/google/apis/datafusion_v1beta1/classes.rb', line 1897

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