Skip to main content

LatestOutlierSummary

Properties

NameTypeDescriptionNotes
TypeEnum [ "LOW_SIMILARITY", "STRUCTURAL" ]The type of outlier summary[optional]
SnapshotDateSystem.DateTimeThe date the bulk outlier detection ran/snapshot was created[optional]
TotalOutliersInt32Total number of outliers for the customer making the request[optional]
TotalIdentitiesInt32Total number of identities for the customer making the request[optional]
TotalIgnoredInt32Total number of ignored outliers[optional]

Examples

  • Prepare the resource
$LatestOutlierSummary = Initialize-PSSailpoint.BetaLatestOutlierSummary  -Type LOW_SIMILARITY `
-SnapshotDate 2021-05-01T18:40:35.772Z `
-TotalOutliers 50 `
-TotalIdentities 5000 `
-TotalIgnored 10
  • Convert the resource to JSON
$LatestOutlierSummary | ConvertTo-JSON

[Back to top]