Class CancelExecutionWindowDetails
Describe the parameters to create a new execution window after this execution window is canceled.
Inherited Members
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 |
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