Class: Google::Apis::SqladminV1beta4::MaintenanceWindow
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::SqladminV1beta4::MaintenanceWindow
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/sqladmin_v1beta4/classes.rb,
 generated/google/apis/sqladmin_v1beta4/representations.rb,
 generated/google/apis/sqladmin_v1beta4/representations.rb
Overview
Maintenance window. This specifies when a v2 Cloud SQL instance should preferably be restarted for system maintenance puruposes.
Instance Attribute Summary collapse
- 
  
    
      #day  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    day of week (1-7), starting on Monday. 
- 
  
    
      #hour  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    hour of day - 0 to 23. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    This is always sql#maintenanceWindow. 
- 
  
    
      #update_track  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Maintenance timing setting: canary (Earlier) or stable (Later). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ MaintenanceWindow 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of MaintenanceWindow. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ MaintenanceWindow
Returns a new instance of MaintenanceWindow
| 1364 1365 1366 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1364 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#day ⇒ Fixnum
day of week (1-7), starting on Monday.
Corresponds to the JSON property day
| 1346 1347 1348 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1346 def day @day end | 
#hour ⇒ Fixnum
hour of day - 0 to 23.
Corresponds to the JSON property hour
| 1351 1352 1353 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1351 def hour @hour end | 
#kind ⇒ String
This is always sql#maintenanceWindow.
Corresponds to the JSON property kind
| 1356 1357 1358 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1356 def kind @kind end | 
#update_track ⇒ String
Maintenance timing setting: canary (Earlier) or stable (Later).
Learn more.
Corresponds to the JSON property updateTrack
| 1362 1363 1364 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1362 def update_track @update_track end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1369 1370 1371 1372 1373 1374 | # File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1369 def update!(**args) @day = args[:day] if args.key?(:day) @hour = args[:hour] if args.key?(:hour) @kind = args[:kind] if args.key?(:kind) @update_track = args[:update_track] if args.key?(:update_track) end |