Skip to main content

TaskResultDetails

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]
IdStringUnique task definition identifier.[optional]
ReportTypeEnum [ "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]
DescriptionStringDescription of the report purpose and/or contents.[optional]
ParentNameStringName of the parent task/report if exists.[optional]
LauncherStringName of the report processing initiator.[optional]
CreatedSystem.DateTimeReport creation date[optional]
LaunchedSystem.DateTimeReport start date[optional]
CompletedSystem.DateTimeReport completion date[optional]
CompletionStatusEnum [ "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]
Attributes[map[string]SystemCollectionsHashtable]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0Extra attributes map(dictionary) needed for the report.[optional]
ProgressStringCurrent report state.[optional]

Examples

  • Prepare the resource
$TaskResultDetails = Initialize-PSSailpoint.V2024TaskResultDetails  -Type MENTOS `
-Id a248c16fe22222b2bd49615481311111 `
-ReportType IDENTITIES_DETAILS `
-Description A detailed view of the identities in the system. `
-ParentName Audit Report `
-Launcher cloudadmin `
-Created null `
-Launched null `
-Completed null `
-CompletionStatus Success `
-Messages [] `
-Returns [] `
-Attributes {org=an-org} `
-Progress Initializing...
  • Convert the resource to JSON
$TaskResultDetails | ConvertTo-JSON

[Back to top]