Skip to main content

Applicationdiscoveryresponse

Properties

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

Examples

  • Prepare the resource
$Applicationdiscoveryresponse = Initialize-Applicationdiscoveryresponse  -Id 8886e5e3-63d0-462f-a195-d98da885b8dc `
-Type QUARTZ `
-UniqueName Application Discovery - ID123 `
-Description Application Discovery - 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
$Applicationdiscoveryresponse | ConvertTo-JSON

[Back to top]