Skip to main content

TaskResultSimplified

Properties

NameTypeDescriptionNotes
IdStringTask identifier[optional]
NameStringTask name[optional]
DescriptionStringTask description[optional]
LauncherStringUser or process who launched the task[optional]
CompletedSystem.DateTimeDate time of completion[optional]
LaunchedSystem.DateTimeDate time when the task was launched[optional]
CompletionStatusEnum [ "Success", "Warning", "Error", "Terminated", "TempError" ]Task result status[optional]

Examples

  • Prepare the resource
$TaskResultSimplified = Initialize-PSSailpoint.V3TaskResultSimplified  -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 null `
-Launched null `
-CompletionStatus Success
  • Convert the resource to JSON
$TaskResultSimplified | ConvertTo-JSON

[Back to top]