starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,53 @@
---
id: v2024-outlier
title: Outlier
pagination_label: Outlier
sidebar_label: Outlier
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'Outlier', 'V2024Outlier']
slug: /tools/sdk/python/v2024/models/outlier
tags: ['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
```python
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]](#)