CancelExecutionWindowDetails¶
- 
class oci.database.models.CancelExecutionWindowDetails(**kwargs)¶
- Bases: - object- Describe the parameters to create a new execution window after this execution window is canceled. - Methods - __init__(**kwargs)- Initializes a new CancelExecutionWindowDetails object with values from keyword arguments. - Attributes - is_enforced_duration_of_new_window- Gets the is_enforced_duration_of_new_window of this CancelExecutionWindowDetails. - time_scheduled_of_new_window- [Required] Gets the time_scheduled_of_new_window of this CancelExecutionWindowDetails. - window_duration_in_mins_of_new_window- [Required] Gets the window_duration_in_mins_of_new_window of this CancelExecutionWindowDetails. - 
__init__(**kwargs)¶
- Initializes a new CancelExecutionWindowDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - time_scheduled_of_new_window (datetime) – The value to assign to the time_scheduled_of_new_window property of this CancelExecutionWindowDetails.
- window_duration_in_mins_of_new_window (int) – The value to assign to the window_duration_in_mins_of_new_window property of this CancelExecutionWindowDetails.
- is_enforced_duration_of_new_window (bool) – The value to assign to the is_enforced_duration_of_new_window property of this CancelExecutionWindowDetails.
 
 - 
is_enforced_duration_of_new_window¶
- Gets the is_enforced_duration_of_new_window of this CancelExecutionWindowDetails. Indicates if duration the user plans to allocate for scheduling window is strictly enforced. The default value is FALSE. - Returns: - The is_enforced_duration_of_new_window of this CancelExecutionWindowDetails. - Return type: - bool 
 - 
time_scheduled_of_new_window¶
- [Required] Gets the time_scheduled_of_new_window of this CancelExecutionWindowDetails. New scheduled date and time of the execution window. - Returns: - The time_scheduled_of_new_window of this CancelExecutionWindowDetails. - Return type: - datetime 
 - 
window_duration_in_mins_of_new_window¶
- [Required] Gets the window_duration_in_mins_of_new_window of this CancelExecutionWindowDetails. Duration window allows user to set a duration they plan to allocate for Scheduling window. The duration is in minutes. - Returns: - The window_duration_in_mins_of_new_window of this CancelExecutionWindowDetails. - Return type: - int 
 
-