ReorderScheduledActionsDetails¶
- 
class oci.database.models.ReorderScheduledActionsDetails(**kwargs)¶
- Bases: - object- Describes the re-order parameters for the Scheduled Action resources. - Methods - __init__(**kwargs)- Initializes a new ReorderScheduledActionsDetails object with values from keyword arguments. - Attributes - scheduled_action_id_orders- [Required] Gets the scheduled_action_id_orders of this ReorderScheduledActionsDetails. - scheduling_window_id- [Required] Gets the scheduling_window_id of this ReorderScheduledActionsDetails. - 
__init__(**kwargs)¶
- Initializes a new ReorderScheduledActionsDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - scheduling_window_id (str) – The value to assign to the scheduling_window_id property of this ReorderScheduledActionsDetails.
- scheduled_action_id_orders (list[oci.database.models.ActionOrderDetails]) – The value to assign to the scheduled_action_id_orders property of this ReorderScheduledActionsDetails.
 
 - 
scheduled_action_id_orders¶
- [Required] Gets the scheduled_action_id_orders of this ReorderScheduledActionsDetails. List of action resources in a specific order. Example: [{actionOrder: 1, actionResourceId: “resourceId1”}, {actionOrder: 2, actionResourceId: “resourceId2”}] - Returns: - The scheduled_action_id_orders of this ReorderScheduledActionsDetails. - Return type: - list[oci.database.models.ActionOrderDetails] 
 
-