mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
---
|
||||
id: v2024-recommendation
|
||||
title: Recommendation
|
||||
pagination_label: Recommendation
|
||||
sidebar_label: Recommendation
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'Recommendation', 'V2024Recommendation']
|
||||
slug: /tools/sdk/python/v2024/models/recommendation
|
||||
tags: ['SDK', 'Software Development Kit', 'Recommendation', 'V2024Recommendation']
|
||||
---
|
||||
|
||||
# Recommendation
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**type** | **Enum** [ 'HUMAN', 'MACHINE' ] | Recommended type of account. | [required]
|
||||
**method** | **Enum** [ 'DISCOVERY', 'SOURCE', 'CRITERIA' ] | Method used to produce the recommendation. DISCOVERY - suggested by AI, SOURCE - the account comes from a source flagged as containing machine accounts, CRITERIA - the account satisfies classification criteria. | [required]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.recommendation import Recommendation
|
||||
|
||||
recommendation = Recommendation(
|
||||
type='MACHINE',
|
||||
method='DISCOVERY'
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user