Show / Hide Table of Contents

Class CancelExecutionWindowDetails

Describe the parameters to create a new execution window after this execution window is canceled.

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

Properties

IsEnforcedDurationOfNewWindow

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

Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE.

TimeScheduledOfNewWindow

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

New scheduled date and time of the execution window.

Remarks

Required

WindowDurationInMinsOfNewWindow

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

Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes.

Remarks

Required

In this article
Back to top