mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
Update python SDK docs: 15116515953
This commit is contained in:
@@ -15,19 +15,19 @@ All URIs are relative to *https://sailpoint.api.identitynow.com/beta*
|
||||
|
||||
Method | HTTP request | Description
|
||||
------------- | ------------- | -------------
|
||||
[**export-outliers-zip**](#export-outliers-zip) | **GET** `/outliers/export` | IAI Identity Outliers Export
|
||||
[**get-identity-outlier-snapshots**](#get-identity-outlier-snapshots) | **GET** `/outlier-summaries` | IAI Identity Outliers Summary
|
||||
[**get-identity-outliers**](#get-identity-outliers) | **GET** `/outliers` | IAI Get Identity Outliers
|
||||
[**get-latest-identity-outlier-snapshots**](#get-latest-identity-outlier-snapshots) | **GET** `/outlier-summaries/latest` | IAI Identity Outliers Latest Summary
|
||||
[**export-outliers-zip**](#export-outliers-zip) | **GET** `/outliers/export` | Iai identity outliers export
|
||||
[**get-identity-outlier-snapshots**](#get-identity-outlier-snapshots) | **GET** `/outlier-summaries` | Iai identity outliers summary
|
||||
[**get-identity-outliers**](#get-identity-outliers) | **GET** `/outliers` | Iai get identity outliers
|
||||
[**get-latest-identity-outlier-snapshots**](#get-latest-identity-outlier-snapshots) | **GET** `/outlier-summaries/latest` | Iai identity outliers latest summary
|
||||
[**get-outlier-contributing-feature-summary**](#get-outlier-contributing-feature-summary) | **GET** `/outlier-feature-summaries/{outlierFeatureId}` | Get identity outlier contibuting feature summary
|
||||
[**get-peer-group-outliers-contributing-features**](#get-peer-group-outliers-contributing-features) | **GET** `/outliers/{outlierId}/contributing-features` | Get identity outlier's contibuting features
|
||||
[**ignore-identity-outliers**](#ignore-identity-outliers) | **POST** `/outliers/ignore` | IAI Identity Outliers Ignore
|
||||
[**ignore-identity-outliers**](#ignore-identity-outliers) | **POST** `/outliers/ignore` | Iai identity outliers ignore
|
||||
[**list-outliers-contributing-feature-access-items**](#list-outliers-contributing-feature-access-items) | **GET** `/outliers/{outlierId}/feature-details/{contributingFeatureName}/access-items` | Gets a list of access items associated with each identity outlier contributing feature
|
||||
[**un-ignore-identity-outliers**](#un-ignore-identity-outliers) | **POST** `/outliers/unignore` | IAI Identity Outliers Unignore
|
||||
[**un-ignore-identity-outliers**](#un-ignore-identity-outliers) | **POST** `/outliers/unignore` | Iai identity outliers unignore
|
||||
|
||||
|
||||
## export-outliers-zip
|
||||
IAI Identity Outliers Export
|
||||
Iai identity outliers export
|
||||
This API exports a list of ignored outliers to a CSV as well as list of non-ignored outliers to a CSV. These two CSVs will be zipped and exported.
|
||||
|
||||
Columns will include: identityId, type, firstDetectionDate, latestDetectionDate, ignored, & attributes (defined set of identity attributes).
|
||||
@@ -71,7 +71,7 @@ with ApiClient(configuration) as api_client:
|
||||
type = 'LOW_SIMILARITY' # str | Type of the identity outliers snapshot to filter on (optional) # str | Type of the identity outliers snapshot to filter on (optional)
|
||||
|
||||
try:
|
||||
# IAI Identity Outliers Export
|
||||
# Iai identity outliers export
|
||||
|
||||
results = IAIOutliersApi(api_client).export_outliers_zip()
|
||||
# Below is a request that includes all optional parameters
|
||||
@@ -87,7 +87,7 @@ with ApiClient(configuration) as api_client:
|
||||
[[Back to top]](#)
|
||||
|
||||
## get-identity-outlier-snapshots
|
||||
IAI Identity Outliers Summary
|
||||
Iai identity outliers summary
|
||||
This API returns a summary containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/get-identity-outlier-snapshots)
|
||||
@@ -138,7 +138,7 @@ with ApiClient(configuration) as api_client:
|
||||
sorters = 'snapshotDate' # str | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **snapshotDate** (optional) # str | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **snapshotDate** (optional)
|
||||
|
||||
try:
|
||||
# IAI Identity Outliers Summary
|
||||
# Iai identity outliers summary
|
||||
|
||||
results = IAIOutliersApi(api_client).get_identity_outlier_snapshots()
|
||||
# Below is a request that includes all optional parameters
|
||||
@@ -155,7 +155,7 @@ with ApiClient(configuration) as api_client:
|
||||
[[Back to top]](#)
|
||||
|
||||
## get-identity-outliers
|
||||
IAI Get Identity Outliers
|
||||
Iai get identity outliers
|
||||
This API returns a list of outliers, containing data such as identity ID, outlier type, detection dates, identity attributes, if identity is ignored, and certification information.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/get-identity-outliers)
|
||||
@@ -207,7 +207,7 @@ with ApiClient(configuration) as api_client:
|
||||
sorters = 'attributes.displayName,firstDetectionDate,-score' # str | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **firstDetectionDate, attributes, score** (optional) # str | Sort results using the standard syntax described in [V3 API Standard Collection Parameters](https://developer.sailpoint.com/idn/api/standard-collection-parameters#sorting-results) Sorting is supported for the following fields: **firstDetectionDate, attributes, score** (optional)
|
||||
|
||||
try:
|
||||
# IAI Get Identity Outliers
|
||||
# Iai get identity outliers
|
||||
|
||||
results = IAIOutliersApi(api_client).get_identity_outliers()
|
||||
# Below is a request that includes all optional parameters
|
||||
@@ -224,7 +224,7 @@ with ApiClient(configuration) as api_client:
|
||||
[[Back to top]](#)
|
||||
|
||||
## get-latest-identity-outlier-snapshots
|
||||
IAI Identity Outliers Latest Summary
|
||||
Iai identity outliers latest summary
|
||||
This API returns a most recent snapshot of each outlier type, each containing the number of identities that customer has, the number of outliers, and the type of outlier.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/get-latest-identity-outlier-snapshots)
|
||||
@@ -267,7 +267,7 @@ with ApiClient(configuration) as api_client:
|
||||
type = 'LOW_SIMILARITY' # str | Type of the identity outliers snapshot to filter on (optional) # str | Type of the identity outliers snapshot to filter on (optional)
|
||||
|
||||
try:
|
||||
# IAI Identity Outliers Latest Summary
|
||||
# Iai identity outliers latest summary
|
||||
|
||||
results = IAIOutliersApi(api_client).get_latest_identity_outlier_snapshots()
|
||||
# Below is a request that includes all optional parameters
|
||||
@@ -419,7 +419,7 @@ with ApiClient(configuration) as api_client:
|
||||
[[Back to top]](#)
|
||||
|
||||
## ignore-identity-outliers
|
||||
IAI Identity Outliers Ignore
|
||||
Iai identity outliers ignore
|
||||
This API receives a list of identity IDs in the request, changes the outliers to be ignored.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/ignore-identity-outliers)
|
||||
@@ -460,7 +460,7 @@ with ApiClient(configuration) as api_client:
|
||||
request_body = '''['request_body_example']''' # List[str] |
|
||||
|
||||
try:
|
||||
# IAI Identity Outliers Ignore
|
||||
# Iai identity outliers ignore
|
||||
new_request_body = RequestBody.from_json(request_body)
|
||||
IAIOutliersApi(api_client).ignore_identity_outliers(request_body=new_request_body)
|
||||
# Below is a request that includes all optional parameters
|
||||
@@ -549,7 +549,7 @@ with ApiClient(configuration) as api_client:
|
||||
[[Back to top]](#)
|
||||
|
||||
## un-ignore-identity-outliers
|
||||
IAI Identity Outliers Unignore
|
||||
Iai identity outliers unignore
|
||||
This API receives a list of identity IDs in the request, changes the outliers to be un-ignored.
|
||||
|
||||
[API Spec](https://developer.sailpoint.com/docs/api/beta/un-ignore-identity-outliers)
|
||||
@@ -590,7 +590,7 @@ with ApiClient(configuration) as api_client:
|
||||
request_body = '''['request_body_example']''' # List[str] |
|
||||
|
||||
try:
|
||||
# IAI Identity Outliers Unignore
|
||||
# Iai identity outliers unignore
|
||||
new_request_body = RequestBody.from_json(request_body)
|
||||
IAIOutliersApi(api_client).un_ignore_identity_outliers(request_body=new_request_body)
|
||||
# Below is a request that includes all optional parameters
|
||||
|
||||
Reference in New Issue
Block a user