Show / Hide Table of Contents

Class MaintenanceWindow

Maintenance window. This specifies when a Cloud SQL instance is restarted for system maintenance purposes.

Inheritance
System.Object
MaintenanceWindow
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class MaintenanceWindow : IDirectResponseSchema

Properties

Day

day of week (1-7), starting on Monday.

Declaration
[JsonProperty("day")]
public virtual int? Day { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Hour

hour of day - 0 to 23.

Declaration
[JsonProperty("hour")]
public virtual int? Hour { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Kind

This is always sql#maintenanceWindow.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

UpdateTrack

Maintenance timing setting: canary (Earlier) or stable (Later). Learn more.

Declaration
[JsonProperty("updateTrack")]
public virtual string UpdateTrack { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
In This Article
Back to top