Show / Hide Table of Contents

Class AutonomousDatabaseMaintenanceWindowSummary

Autonomous AI Database maintenance window. The maintenance window can be configured during database creation. To change the maintenance window of an existing Autonomous AI Database Serverless instance, clone the database and specify the maintenance window for the new cloned instance.

Inheritance
object
AutonomousDatabaseMaintenanceWindowSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabaseService.Models
Assembly: OCI.DotNetSDK.Database.dll
Syntax
public class AutonomousDatabaseMaintenanceWindowSummary

Properties

AvailabilityDomain

Declaration
[JsonProperty(PropertyName = "availabilityDomain")]
public string AvailabilityDomain { get; set; }
Property Value
Type Description
string

The AD in which the maintenance will occur.

DayOfWeek

Declaration
[Required(ErrorMessage = "DayOfWeek is required.")]
[JsonProperty(PropertyName = "dayOfWeek")]
public DayOfWeek DayOfWeek { get; set; }
Property Value
Type Description
DayOfWeek
Remarks

Required

IsMaintenanceWindowChangeScheduled

Declaration
[JsonProperty(PropertyName = "isMaintenanceWindowChangeScheduled")]
public bool? IsMaintenanceWindowChangeScheduled { get; set; }
Property Value
Type Description
bool?

Indicates if the maintenance window change is scheduled or not for the Autonomous AI Database.

MaintenanceEndTime

Declaration
[JsonProperty(PropertyName = "maintenanceEndTime")]
public string MaintenanceEndTime { get; set; }
Property Value
Type Description
string

The maintenance end time. The value must use the ISO-8601 format "hh:mm".

MaintenanceStartTime

Declaration
[JsonProperty(PropertyName = "maintenanceStartTime")]
public string MaintenanceStartTime { get; set; }
Property Value
Type Description
string

The maintenance start time. The value must use the ISO-8601 format "hh:mm".

In this article
Back to top