add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-recommendation-config-dto
title: RecommendationConfigDto
pagination_label: RecommendationConfigDto
sidebar_label: RecommendationConfigDto
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RecommendationConfigDto', 'V2025RecommendationConfigDto']
slug: /tools/sdk/powershell/v2025/models/recommendation-config-dto
tags: ['SDK', 'Software Development Kit', 'RecommendationConfigDto', 'V2025RecommendationConfigDto']
---
# RecommendationConfigDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RecommenderFeatures** | **[]String** | List of identity attributes to use for calculating certification recommendations | [optional]
**PeerGroupPercentageThreshold** | **Double** | The percent value that the recommendation calculation must surpass to produce a YES recommendation | [optional]
**RunAutoSelectOnce** | **Boolean** | If true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run | [optional] [default to $false]
**OnlyTuneThreshold** | **Boolean** | If true, rulesRecommenderConfig will be refreshed with new programatically selected threshold values on the next pipeline run | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$RecommendationConfigDto = Initialize-PSSailpoint.V2025RecommendationConfigDto -RecommenderFeatures [jobTitle, location, peer_group, department, active] `
-PeerGroupPercentageThreshold 0.5 `
-RunAutoSelectOnce false `
-OnlyTuneThreshold false
```
- Convert the resource to JSON
```powershell
$RecommendationConfigDto | ConvertTo-JSON
```
[[Back to top]](#)