Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/LatestOutlierSummary.md
2025-05-07 14:37:48 +00:00

1.4 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-latest-outlier-summary LatestOutlierSummary LatestOutlierSummary LatestOutlierSummary powershellsdk
powershell
PowerShell
sdk
LatestOutlierSummary
V2024LatestOutlierSummary
/tools/sdk/powershell/v2024/models/latest-outlier-summary
SDK
Software Development Kit
LatestOutlierSummary
V2024LatestOutlierSummary

LatestOutlierSummary

Properties

Name Type Description Notes
Type Enum [ "LOW_SIMILARITY", "STRUCTURAL" ] The type of outlier summary [optional]
SnapshotDate System.DateTime The date the bulk outlier detection ran/snapshot was created [optional]
TotalOutliers Int32 Total number of outliers for the customer making the request [optional]
TotalIdentities Int32 Total number of identities for the customer making the request [optional]
TotalIgnored Int32 Total number of ignored outliers [optional]

Examples

  • Prepare the resource
$LatestOutlierSummary = Initialize-V2024LatestOutlierSummary  -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]