Skip to main content

LatestOutlierSummary

Properties

NameTypeDescriptionNotes
typeEnum [ 'LOW_SIMILARITY', 'STRUCTURAL' ]The type of outlier summary[optional]
snapshot_datedatetimeThe date the bulk outlier detection ran/snapshot was created[optional]
total_outliersintTotal number of outliers for the customer making the request[optional]
total_identitiesintTotal number of identities for the customer making the request[optional]
total_ignoredintTotal number of ignored outliers[optional]
}

Example

from sailpoint.v2024.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]