Skip to main content

Taskinfo

Properties

NameTypeDescriptionNotes
task_idintThe unique identifier for the task.[optional]
task_type_namestrThe type or category of the task.[optional]
start_timeintThe start time of the task, represented as epoch seconds.[optional]
end_timeintThe end time of the task, represented as epoch seconds.[optional]
task_namestrThe display name of the task.[optional]
created_by_display_namestrThe display name of the user who created the task.[optional]
progressintThe progress of the task, typically represented as a percentage (0-100).[optional]
statusstrThe current status of the task (e.g., "Running", "Completed", "Failed").[optional]
detailsstrAdditional details or information about the task.[optional]
schedule_task_idintThe unique identifier of the associated scheduled task, if applicable.[optional]
}

Example

from sailpoint.data_access_security.models.taskinfo import Taskinfo

taskinfo = Taskinfo(
task_id=1001,
task_type_name='DataSync',
start_time=1762237200,
end_time=1762240800,
task_name='Daily Data Sync',
created_by_display_name='Jane Doe',
progress=75,
status='Running',
details='Task is processing files in the Finance folder.',
schedule_task_id=2001
)

[Back to top]