Skip to main content

LoadAccountsTaskTask

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the task this taskStatus represents[optional]
TypeStringType of task this task represents[optional]
NameStringThe name of the aggregation process[optional]
DescriptionStringThe description of the task[optional]
LauncherStringThe user who initiated the task[optional]
CreatedSystem.DateTimeThe Task creation date[optional]
LaunchedSystem.DateTimeThe task start date[optional]
CompletedSystem.DateTimeThe task completion date[optional]
CompletionStatusEnum [ "SUCCESS", "WARNING", "ERROR", "TERMINATED", "TEMP_ERROR" ]Task completion status.[optional]
ParentNameStringName of the parent task if exists.[optional]
Messages[]LoadAccountsTaskTaskMessagesInnerList of the messages dedicated to the report. From task definition perspective here usually should be warnings or errors.[optional]
ProgressStringCurrent task state.[optional]
AttributesLoadAccountsTaskTaskAttributes[optional]
Returns[]LoadAccountsTaskTaskReturnsInnerReturn values from the task[optional]

Examples

  • Prepare the resource
$LoadAccountsTaskTask = Initialize-PSSailpoint.V2024LoadAccountsTaskTask  -Id ef38f94347e94562b5bb8424a56397d8 `
-Type QUARTZ `
-Name Cloud Account Aggregation `
-Description Aggregate from the specified application `
-Launcher John Doe `
-Created null `
-Launched null `
-Completed null `
-CompletionStatus Success `
-ParentName Audit Report `
-Messages [] `
-Progress Initializing... `
-Attributes null `
-Returns null
  • Convert the resource to JSON
$LoadAccountsTaskTask | ConvertTo-JSON

[Back to top]