mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
adding powershell sdk docs back
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: beta-recommendation-config-dto
|
||||
title: RecommendationConfigDto
|
||||
pagination_label: RecommendationConfigDto
|
||||
sidebar_label: RecommendationConfigDto
|
||||
sidebar_class_name: powershellsdk
|
||||
keywords: ['powershell', 'PowerShell', 'sdk', 'RecommendationConfigDto', 'BetaRecommendationConfigDto']
|
||||
slug: /tools/sdk/powershell/beta/models/recommendation-config-dto
|
||||
tags: ['SDK', 'Software Development Kit', 'RecommendationConfigDto', 'BetaRecommendationConfigDto']
|
||||
---
|
||||
|
||||
|
||||
# RecommendationConfigDto
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**RecommenderFeatures** | Pointer to **[]String** | List of identity attributes to use for calculating certification recommendations | [optional]
|
||||
**PeerGroupPercentageThreshold** | Pointer to **Double** | The percent value that the recommendation calculation must surpass to produce a YES recommendation | [optional]
|
||||
**RunAutoSelectOnce** | Pointer to **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** | Pointer to **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.BetaRecommendationConfigDto -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]](#)
|
||||
|
||||
Reference in New Issue
Block a user