Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/LatestOutlierSummary.md
2025-04-01 09:23:12 -04:00

1.3 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
v2025-latest-outlier-summary LatestOutlierSummary LatestOutlierSummary LatestOutlierSummary pythonsdk
python
Python
sdk
LatestOutlierSummary
V2025LatestOutlierSummary
/tools/sdk/python/v2025/models/latest-outlier-summary
SDK
Software Development Kit
LatestOutlierSummary
V2025LatestOutlierSummary

LatestOutlierSummary

Properties

Name Type Description Notes
type Enum [ 'LOW_SIMILARITY', 'STRUCTURAL' ] The type of outlier summary [optional]
snapshot_date datetime The date the bulk outlier detection ran/snapshot was created [optional]
total_outliers int Total number of outliers for the customer making the request [optional]
total_identities int Total number of identities for the customer making the request [optional]
total_ignored int Total number of ignored outliers [optional]
}

Example

from sailpoint.v2025.models.latest_outlier_summary import LatestOutlierSummary

latest_outlier_summary = LatestOutlierSummary(
type='LOW_SIMILARITY',
snapshot_date='2021-05-01T18:40:35.772Z',
total_outliers=50,
total_identities=5000,
total_ignored=10
)

[Back to top]