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,39 @@
---
id: beta-recommendation-config-dto
title: RecommendationConfigDto
pagination_label: RecommendationConfigDto
sidebar_label: RecommendationConfigDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RecommendationConfigDto', 'BetaRecommendationConfigDto']
slug: /tools/sdk/python/beta/models/recommendation-config-dto
tags: ['SDK', 'Software Development Kit', 'RecommendationConfigDto', 'BetaRecommendationConfigDto']
---
# RecommendationConfigDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**recommender_features** | **[]str** | List of identity attributes to use for calculating certification recommendations | [optional]
**peer_group_percentage_threshold** | **float** | The percent value that the recommendation calculation must surpass to produce a YES recommendation | [optional]
**run_auto_select_once** | **bool** | If true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run | [optional] [default to False]
**only_tune_threshold** | **bool** | If true, rulesRecommenderConfig will be refreshed with new programatically selected threshold values on the next pipeline run | [optional] [default to False]
}
## Example
```python
from sailpoint.beta.models.recommendation_config_dto import RecommendationConfigDto
recommendation_config_dto = RecommendationConfigDto(
recommender_features=[jobTitle, location, peer_group, department, active],
peer_group_percentage_threshold=0.5,
run_auto_select_once=False,
only_tune_threshold=False
)
```
[[Back to top]](#)