Skip to main content

Updateschedulerequest

Properties

NameTypeDescriptionNotes
task_type_namestrThe type or category of the scheduled task.[optional]
schedule_typestrThe scheduling type, such as "Daily", "Weekly", or "Manual" etc.[optional]
intervalintThe interval depends on the chosen schedule cycle (scheduleType), i.e. if the schedule is daily, the interval will represent the days between executions.[optional]
schedule_task_namestrThe display name of the scheduled task.[optional]
start_timeintThe start time for the scheduled task, represented as epoch seconds.[optional]
end_timeintThe end time for the scheduled task, represented as epoch seconds.[optional]
days_of_week[]strA list of days of the week when the task should run (e.g., "Monday", "Wednesday").[optional]
activeboolIndicates whether the scheduled task is currently active.[optional] [default to False]
run_after_schedule_task_idintThe ID of another scheduled task that triggers this scheduled task upon its completion.[optional]
application_idintThe unique identifier of the application associated with the scheduled task.[optional]
}

Example

from sailpoint.data_access_security.models.updateschedulerequest import Updateschedulerequest

updateschedulerequest = Updateschedulerequest(
task_type_name='DataSync',
schedule_type='Daily',
interval=1440,
schedule_task_name='Daily Data Sync',
start_time=1762237200,
end_time=1762240800,
days_of_week=["Monday","Wednesday","Friday"],
active=True,
run_after_schedule_task_id=1000,
application_id=2001
)

[Back to top]