mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-06 20:37:46 +00:00
1.7 KiB
1.7 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-recommendation-config-dto | RecommendationConfigDto | RecommendationConfigDto | RecommendationConfigDto | powershellsdk |
|
/tools/sdk/powershell/v2024/models/recommendation-config-dto |
|
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
$RecommendationConfigDto = Initialize-PSSailpoint.V2024RecommendationConfigDto -RecommenderFeatures [jobTitle, location, peer_group, department, active] `
-PeerGroupPercentageThreshold 0.5 `
-RunAutoSelectOnce false `
-OnlyTuneThreshold false
- Convert the resource to JSON
$RecommendationConfigDto | ConvertTo-JSON