Show / Hide Table of Contents

Class MaintenanceWindow

Defines the maintenance window, when automatic actions can be performed.

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

Properties

Day

Declaration
[Required(ErrorMessage = "Day is required.")]
[JsonProperty(PropertyName = "day")]
[JsonConverter(typeof(ResponseEnumConverter))]
public Day? Day { get; set; }
Property Value
Type Description
Day?

Days of the week.

Remarks

Required

StartHour

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

Start hour for maintenance period. Hour is in UTC.

Remarks

Required

In this article
Back to top