Skip to main content

ReportResults

Details about report result or current state.

Properties

NameTypeDescriptionNotes
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]
task_def_namestrName of the task definition which is started to process requesting report. Usually the same as report name[optional]
idstrUnique task definition identifier.[optional]
createddatetimeReport processing start date[optional]
statusEnum [ 'SUCCESS', 'FAILURE', 'WARNING', 'TERMINATED' ]Report current state or result status.[optional]
durationintReport processing time in ms.[optional]
rowsintReport size in rows.[optional]
available_formats[]strOutput report file formats. This are formats for calling get endpoint as a query parameter 'fileFormat'. In case report won't have this argument there will be ['CSV', 'PDF'] as default.[optional]
}

Example

from sailpoint.v2024.models.report_results import ReportResults

report_results = ReportResults(
report_type='IDENTITIES_DETAILS',
task_def_name='Identities Details Report',
id='a248c16fe22222b2bd49615481311111',
created=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
status='SUCCESS',
duration=342,
rows=37,
available_formats=[CSV]
)

[Back to top]