Skip to main content

TaskResultDetails

Details about job or task type, state and lifecycle.

Properties

NameTypeDescriptionNotes
typeEnum [ 'QUARTZ', 'QPOC', 'MENTOS', 'QUEUED_TASK' ]Type of the job or task underlying in the report processing. It could be a quartz task, QPOC or MENTOS jobs or a refresh/sync task.[optional]
idstrUnique task definition identifier.[optional]
report_typeEnum [ 'ACCOUNTS', 'IDENTITIES_DETAILS', 'IDENTITIES', 'IDENTITY_PROFILE_IDENTITY_ERROR', 'ORPHAN_IDENTITIES', 'SEARCH_EXPORT', 'UNCORRELATED_ACCOUNTS' ]Use this property to define what report should be processed in the RDE service.[optional]
descriptionstrDescription of the report purpose and/or contents.[optional]
parent_namestrName of the parent task/report if exists.[optional]
launcherstrName of the report processing initiator.[optional]
createddatetimeReport creation date[optional]
launcheddatetimeReport start date[optional]
completeddatetimeReport completion date[optional]
completion_statusEnum [ 'SUCCESS', 'WARNING', 'ERROR', 'TERMINATED', 'TEMP_ERROR' ]Report completion status.[optional]
messages[]TaskResultDetailsMessagesInnerList of the messages dedicated to the report. From task definition perspective here usually should be warnings or errors.[optional]
returns[]TaskResultDetailsReturnsInnerTask definition results, if necessary.[optional]
attributesobjectExtra attributes map(dictionary) needed for the report.[optional]
progressstrCurrent report state.[optional]
}

Example

from sailpoint.v2024.models.task_result_details import TaskResultDetails

task_result_details = TaskResultDetails(
type='MENTOS',
id='a248c16fe22222b2bd49615481311111',
report_type='IDENTITIES_DETAILS',
description='A detailed view of the identities in the system.',
parent_name='Audit Report',
launcher='cloudadmin',
created=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'),
completed=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
completion_status='Success',
messages=[],
returns=[],
attributes={org=an-org},
progress='Initializing...'
)

[Back to top]