Class: Google::Apis::ComputeAlpha::NodeGroupMaintenanceWindow
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::NodeGroupMaintenanceWindow
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Time window specified for daily maintenance operations. GCE's internal maintenance will be performed within this window.
Instance Attribute Summary collapse
-
#duration ⇒ String
[Output only] A predetermined duration for the window, automatically chosen to be the smallest possible in the given scenario.
-
#maintenance_duration ⇒ Google::Apis::ComputeAlpha::Duration
A Duration represents a fixed-length span of time represented as a count of seconds and fractions of seconds at nanosecond resolution.
-
#start_time ⇒ String
Start time of the window.
Instance Method Summary collapse
-
#initialize(**args) ⇒ NodeGroupMaintenanceWindow
constructor
A new instance of NodeGroupMaintenanceWindow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ NodeGroupMaintenanceWindow
Returns a new instance of NodeGroupMaintenanceWindow.
34403 34404 34405 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 34403 def initialize(**args) update!(**args) end |
Instance Attribute Details
#duration ⇒ String
[Output only] A predetermined duration for the window, automatically chosen to
be the smallest possible in the given scenario.
Corresponds to the JSON property duration
34386 34387 34388 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 34386 def duration @duration end |
#maintenance_duration ⇒ Google::Apis::ComputeAlpha::Duration
A Duration represents a fixed-length span of time represented as a count of
seconds and fractions of seconds at nanosecond resolution. It is independent
of any calendar and concepts like "day" or "month". Range is approximately 10,
000 years.
Corresponds to the JSON property maintenanceDuration
34394 34395 34396 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 34394 def maintenance_duration @maintenance_duration end |
#start_time ⇒ String
Start time of the window. This must be in UTC format that resolves to one of
00:00, 04:00, 08:00, 12:00, 16:00, or 20:00. For example, both 13:00-5 and 08:
00 are valid.
Corresponds to the JSON property startTime
34401 34402 34403 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 34401 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
34408 34409 34410 34411 34412 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 34408 def update!(**args) @duration = args[:duration] if args.key?(:duration) @maintenance_duration = args[:maintenance_duration] if args.key?(:maintenance_duration) @start_time = args[:start_time] if args.key?(:start_time) end |