Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Outlier.md
2025-02-20 12:59:19 -05:00

2.1 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-outlier Outlier Outlier Outlier pythonsdk
python
Python
sdk
Outlier
V2024Outlier
/tools/sdk/python/v2024/models/outlier
SDK
Software Development Kit
Outlier
V2024Outlier

Outlier

Properties

Name Type Description Notes
id str The identity's unique identifier for the outlier record [optional]
identity_id str The ID of the identity that is detected as an outlier [optional]
type Enum [ 'LOW_SIMILARITY', 'STRUCTURAL' ] The type of outlier summary [optional]
first_detection_date datetime The first date the outlier was detected [optional]
latest_detection_date datetime The most recent date the outlier was detected [optional]
ignored bool Flag whether or not the outlier has been ignored [optional]
attributes object Object containing mapped identity attributes [optional]
score float The outlier score determined by the detection engine ranging from 0..1 [optional]
unignore_type Enum [ 'MANUAL', 'AUTOMATIC' ] Enum value of if the outlier manually or automatically un-ignored. Will be NULL if outlier is not ignored [optional]
unignore_date datetime shows date when last time has been unignored outlier [optional]
ignore_date datetime shows date when last time has been ignored outlier [optional]
}

Example

from sailpoint.v2024.models.outlier import Outlier

outlier = Outlier(
id='5be33d3e-c54d-4ed7-af73-2380543e8283',
identity_id='5be33d3e-c54d-4ed7-af73-2380543e8283',
type='LOW_SIMILARITY',
first_detection_date='2021-05-01T18:40:35.772Z',
latest_detection_date='2021-05-03T18:40:35.772Z',
ignored=False,
attributes={displayName=John Smith, jobTitle=Software Engineer, department=Engineering},
score=0.92,
unignore_type='MANUAL',
unignore_date='2021-06-01T18:40:35.772Z',
ignore_date='2021-06-01T18:40:35.772Z'
)

[Back to top]