Class: Google::Apis::ContainerV1::MaintenanceWindow
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ContainerV1::MaintenanceWindow
 
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/container_v1/classes.rb,
 lib/google/apis/container_v1/representations.rb,
 lib/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.
| 3507 3508 3509 | # File 'lib/google/apis/container_v1/classes.rb', line 3507 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
| 3494 3495 3496 | # File 'lib/google/apis/container_v1/classes.rb', line 3494 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
| 3500 3501 3502 | # File 'lib/google/apis/container_v1/classes.rb', line 3500 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
| 3505 3506 3507 | # File 'lib/google/apis/container_v1/classes.rb', line 3505 def recurring_window @recurring_window end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 3512 3513 3514 3515 3516 | # File 'lib/google/apis/container_v1/classes.rb', line 3512 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 |