Class: Google::Apis::SqladminV1beta4::MaintenanceWindow
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1beta4::MaintenanceWindow
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1beta4/classes.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb,
lib/google/apis/sqladmin_v1beta4/representations.rb
Overview
Maintenance window. This specifies when a Cloud SQL instance is restarted for system maintenance purposes.
Instance Attribute Summary collapse
-
#day ⇒ Fixnum
Day of week -
MONDAY
,TUESDAY
,WEDNESDAY
,THURSDAY
,FRIDAY
,SATURDAY
, orSUNDAY
. -
#hour ⇒ Fixnum
Hour of day - 0 to 23.
-
#kind ⇒ String
This is always
sql#maintenanceWindow
. -
#update_track ⇒ String
Maintenance timing settings:
canary
,stable
, orweek5
.
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.
2802 2803 2804 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2802 def initialize(**args) update!(**args) end |
Instance Attribute Details
#day ⇒ Fixnum
Day of week - MONDAY
, TUESDAY
, WEDNESDAY
, THURSDAY
, FRIDAY
,
SATURDAY
, or SUNDAY
. Specify in the UTC time zone. Returned in output as an
integer, 1 to 7, where 1
equals Monday.
Corresponds to the JSON property day
2783 2784 2785 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2783 def day @day end |
#hour ⇒ Fixnum
Hour of day - 0 to 23. Specify in the UTC time zone.
Corresponds to the JSON property hour
2788 2789 2790 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2788 def hour @hour end |
#kind ⇒ String
This is always sql#maintenanceWindow
.
Corresponds to the JSON property kind
2793 2794 2795 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2793 def kind @kind end |
#update_track ⇒ String
Maintenance timing settings: canary
, stable
, or week5
. For more
information, see About maintenance on Cloud SQL instances.
Corresponds to the JSON property updateTrack
2800 2801 2802 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2800 def update_track @update_track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2807 2808 2809 2810 2811 2812 |
# File 'lib/google/apis/sqladmin_v1beta4/classes.rb', line 2807 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 |