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
Corresponds to the JSON property
updateTrack
.
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.
1168 1169 1170 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1168 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
1151 1152 1153 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1151 def day @day end |
#hour ⇒ Fixnum
hour of day - 0 to 23.
Corresponds to the JSON property hour
1156 1157 1158 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1156 def hour @hour end |
#kind ⇒ String
This is always sql#maintenanceWindow.
Corresponds to the JSON property kind
1161 1162 1163 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1161 def kind @kind end |
#update_track ⇒ String
Corresponds to the JSON property updateTrack
1166 1167 1168 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1166 def update_track @update_track end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1173 1174 1175 1176 1177 1178 |
# File 'generated/google/apis/sqladmin_v1beta4/classes.rb', line 1173 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 |