Skip to main content

TaskDefinitionSummary

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the TaskDefinition[required]
UniqueNameStringName of the TaskDefinition[required]
DescriptionStringDescription of the TaskDefinition[required]
ParentNameStringName of the parent of the TaskDefinition[required]
ExecutorStringExecutor of the TaskDefinition[required]
Arguments[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Formal parameters of the TaskDefinition, without values[required]

Examples

  • Prepare the resource
$TaskDefinitionSummary = Initialize-PSSailpoint.V2024TaskDefinitionSummary  -Id 2c91808475b4334b0175e1dff64b63c5 `
-UniqueName Cloud Account Aggregation `
-Description Aggregates from the specified application. `
-ParentName Cloud Account Aggregation `
-Executor sailpoint.task.ServiceTaskExecutor `
-Arguments null
  • Convert the resource to JSON
$TaskDefinitionSummary | ConvertTo-JSON

[Back to top]