Show / Hide Table of Contents

Class CreateMaintenanceWindowDetails

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

Inheritance
object
CreateMaintenanceWindowDetails
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 CreateMaintenanceWindowDetails

Properties

Day

Declaration
[Required(ErrorMessage = "Day is required.")]
[JsonProperty(PropertyName = "day")]
[JsonConverter(typeof(StringEnumConverter))]
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