Class: Google::Apis::ContainerV1::MaintenanceWindow
- Inherits:
-
Object
- Object
- Google::Apis::ContainerV1::MaintenanceWindow
- 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
MaintenanceWindow defines the maintenance window to be used for the cluster.
Instance Attribute Summary collapse
-
#daily_maintenance_window ⇒ Google::Apis::ContainerV1::DailyMaintenanceWindow
Time window specified for daily maintenance operations.
-
#maintenance_exclusions ⇒ Hash<String,Google::Apis::ContainerV1::TimeWindow>
Exceptions to maintenance window.
-
#recurring_window ⇒ Google::Apis::ContainerV1::RecurringTimeWindow
Represents an arbitrary window of time that recurs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MaintenanceWindow
constructor
A new instance of MaintenanceWindow.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MaintenanceWindow
Returns a new instance of MaintenanceWindow.
1954 1955 1956 |
# File 'generated/google/apis/container_v1/classes.rb', line 1954 def initialize(**args) update!(**args) end |
Instance Attribute Details
#daily_maintenance_window ⇒ Google::Apis::ContainerV1::DailyMaintenanceWindow
Time window specified for daily maintenance operations.
Corresponds to the JSON property dailyMaintenanceWindow
1941 1942 1943 |
# File 'generated/google/apis/container_v1/classes.rb', line 1941 def daily_maintenance_window @daily_maintenance_window end |
#maintenance_exclusions ⇒ Hash<String,Google::Apis::ContainerV1::TimeWindow>
Exceptions to maintenance window. Non-emergency maintenance should not occur
in these windows.
Corresponds to the JSON property maintenanceExclusions
1947 1948 1949 |
# File 'generated/google/apis/container_v1/classes.rb', line 1947 def maintenance_exclusions @maintenance_exclusions end |
#recurring_window ⇒ Google::Apis::ContainerV1::RecurringTimeWindow
Represents an arbitrary window of time that recurs.
Corresponds to the JSON property recurringWindow
1952 1953 1954 |
# File 'generated/google/apis/container_v1/classes.rb', line 1952 def recurring_window @recurring_window end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1959 1960 1961 1962 1963 |
# File 'generated/google/apis/container_v1/classes.rb', line 1959 def update!(**args) @daily_maintenance_window = args[:daily_maintenance_window] if args.key?(:daily_maintenance_window) @maintenance_exclusions = args[:maintenance_exclusions] if args.key?(:maintenance_exclusions) @recurring_window = args[:recurring_window] if args.key?(:recurring_window) end |