Skip to main content

TaskResultDetails

Details of an asynchronous task started by a source dataset operation.

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the task.[optional]
typestrType of task this result represents.[optional]
namestrThe name of the task.[optional]
descriptionstrThe description of the task.[optional]
launcherstrThe user who initiated the task.[optional]
createddatetimeThe task creation date.[optional]
launcheddatetimeThe task start date.[optional]
completeddatetimeThe task completion date.[optional]
completion_statusEnum [ 'SUCCESS', 'WARNING', 'ERROR', 'TERMINATED', 'TEMP_ERROR' ]Task completion status.[optional]
parent_namestrName of the parent task if one exists.[optional]
progressstrCurrent task state.[optional]
}

Example

from sailpoint.sources.models.task_result_details import TaskResultDetails

task_result_details = TaskResultDetails(
id='ef38f94347e94562b5bb8424a56397d8',
type='QUARTZ',
name='Dataset Aggregation',
description='Aggregate from the specified dataset',
launcher='John Doe',
created='2020-09-07T12:14:00.364Z',
launched='2020-09-07T12:14:00.521Z',
completed='2020-09-07T12:14:01.137Z',
completion_status='SUCCESS',
parent_name='Audit Report',
progress='Initializing...'
)

[Back to top]