Show / Hide Table of Contents

Class MaintenanceDisabledWindow

Time window during which downtime-inducing maintenance shall not be performed. Downtime-free maintenance may be performed to apply required security patches.

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

Properties

TimeEnd

Declaration
[Required(ErrorMessage = "TimeEnd is required.")]
[JsonProperty(PropertyName = "timeEnd")]
public DateTime? TimeEnd { get; set; }
Property Value
Type Description
DateTime?

The time until when maintenance is disabled. Must be set together with timeStart and must be after timeStart. as described by RFC 3339.

Remarks

Required

TimeStart

Declaration
[Required(ErrorMessage = "TimeStart is required.")]
[JsonProperty(PropertyName = "timeStart")]
public DateTime? TimeStart { get; set; }
Property Value
Type Description
DateTime?

The time from when maintenance is disabled. Must be set together with timeEnd and must be before timeEnd. as described by RFC 3339.

Remarks

Required

In this article
Back to top