Skip to main content

UnsanctionedApplicationAnomalySummary

Properties

NameTypeDescriptionNotes
AnomalyTypeStringThe anomaly type these counts describe. Always unsanctioned_app for this endpoint.[optional]
AgentCountInt64Number of distinct agents with at least one unsanctioned-application anomaly.[optional]
UserCountInt64Number of distinct owners (users) associated with unsanctioned-application anomalies.[optional]
EventCountInt64Total number of unsanctioned-application anomaly records.[optional]

Examples

  • Prepare the resource
$UnsanctionedApplicationAnomalySummary = Initialize-UnsanctionedApplicationAnomalySummary -AnomalyType unsanctioned_app `
-AgentCount 23 `
-UserCount 254 `
-EventCount 97
  • Convert the resource to JSON
$UnsanctionedApplicationAnomalySummary | ConvertTo-JSON

[Back to top]