Class: Google::Apis::ContainerV1::TimeWindow

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/container_v1/classes.rb,
generated/google/apis/container_v1/representations.rb,
generated/google/apis/container_v1/representations.rb

Overview

Represents an arbitrary window of time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TimeWindow

Returns a new instance of TimeWindow.



3678
3679
3680
# File 'generated/google/apis/container_v1/classes.rb', line 3678

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

Instance Attribute Details

#end_timeString

The time that the window ends. The end time should take place after the start time. Corresponds to the JSON property endTime

Returns:

  • (String)


3671
3672
3673
# File 'generated/google/apis/container_v1/classes.rb', line 3671

def end_time
  @end_time
end

#start_timeString

The time that the window first starts. Corresponds to the JSON property startTime

Returns:

  • (String)


3676
3677
3678
# File 'generated/google/apis/container_v1/classes.rb', line 3676

def start_time
  @start_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3683
3684
3685
3686
# File 'generated/google/apis/container_v1/classes.rb', line 3683

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