Skip to main content

TaskResultSimplified

Properties

NameTypeDescriptionNotes
idstrTask identifier[optional]
namestrTask name[optional]
descriptionstrTask description[optional]
launcherstrUser or process who launched the task[optional]
completeddatetimeDate time of completion[optional]
launcheddatetimeDate time when the task was launched[optional]
completion_statusEnum [ 'Success', 'Warning', 'Error', 'Terminated', 'TempError' ]Task result status[optional]
}

Example

from sailpoint.v2024.models.task_result_simplified import TaskResultSimplified

task_result_simplified = TaskResultSimplified(
id='ff8081814d977c21014da056804a0af3',
name='Background Object Terminator c8f030f2-b1a6-4e33-99e8-6935bc18735d',
description='Generic task for terminating data in the overlay, used by the TerminationService.',
launcher='support',
completed=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
launched=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
completion_status='Success'
)

[Back to top]