class Google::Apis::ContainerV1::DailyMaintenanceWindow
Time window specified for daily maintenance operations.
Attributes
duration[RW]
- Output only
-
Duration of the time window, automatically chosen to be smallest
possible in the given scenario. Duration will be in [RFC3339](www.ietf. org/rfc/rfc3339.txt) format “PTnHnMnS”. Corresponds to the JSON property `duration` @return [String]
start_time[RW]
Time within the maintenance window to start the maintenance operations. Time format should be in [RFC3339](www.ietf.org/rfc/rfc3339.txt) format “HH: MM”, where HH : [00-23] and MM : [00-59] GMT. Corresponds to the JSON property `startTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/container_v1/classes.rb, line 1409 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/container_v1/classes.rb, line 1414 def update!(**args) @duration = args[:duration] if args.key?(:duration) @start_time = args[:start_time] if args.key?(:start_time) end