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

DayOfWeek

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

Required

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