Skip to main content

MachineIdentityAggregationResponse

Properties

NameTypeDescriptionNotes
IdStringSystem-generated unique ID of the Object[optional]
TypeEnum [ "QUARTZ", "QPOC", "QUEUED_TASK" ]Type of task for aggregation[optional]
UniqueNameStringName of the task for aggregation[optional]
DescriptionStringDescription of the aggregation[optional]
ParentNameStringName of the parent of the task for aggregation[optional]
LauncherStringService to execute the aggregation[optional]
TargetMachineIdentityAggregationResponseTarget[optional]
CreatedSystem.DateTimeCreation date of the aggregation[optional]
ModifiedSystem.DateTimeLast modification date of the aggregation[optional]
LaunchedSystem.DateTimeLaunch date of the aggregation[optional]
CompletedSystem.DateTimeCompletion date of the aggregation[optional]
TaskDefinitionSummaryTaskDefinitionSummary[optional]
CompletionStatusEnum [ "SUCCESS", "WARNING", "ERROR", "TERMINATED", "TEMPERROR" ]Completion status of the aggregation[optional]
Messages[]TaskStatusMessageMessages associated with the aggregation[optional]
Returns[]TaskReturnDetailsReturn values associated with the aggregation[optional]
Attributes[map[string]AnyType]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4Attributes of the aggregation[optional]
ProgressStringCurrent progress of aggregation[optional]
PercentCompleteInt32Current percentage completion of aggregation[optional]

Examples

  • Prepare the resource
$MachineIdentityAggregationResponse = Initialize-V2025MachineIdentityAggregationResponse  -Id 8886e5e3-63d0-462f-a195-d98da885b8dc `
-Type QUARTZ `
-UniqueName AI Agent Aggregation - ID123 `
-Description AI Agent Aggregation - From given dataset IDs `
-ParentName Parent Task `
-Launcher System `
-Target null `
-Created 2020-07-11T21:23:15Z `
-Modified 2020-07-11T21:23:15Z `
-Launched 2020-07-11T21:23:15Z `
-Completed 2020-07-11T21:23:15Z `
-TaskDefinitionSummary null `
-CompletionStatus SUCCESS `
-Messages null `
-Returns null `
-Attributes {creatorRequestId=ed5a371bbaba411fb8f1f6970b842334} `
-Progress Started `
-PercentComplete 100
  • Convert the resource to JSON
$MachineIdentityAggregationResponse | ConvertTo-JSON

[Back to top]