Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/RecommendationConfigDto.md
2025-01-28 13:29:29 -05:00

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
beta-recommendation-config-dto RecommendationConfigDto RecommendationConfigDto RecommendationConfigDto powershellsdk
powershell
PowerShell
sdk
RecommendationConfigDto
BetaRecommendationConfigDto
/tools/sdk/powershell/beta/models/recommendation-config-dto
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
$RecommendationConfigDto = Initialize-PSSailpoint.BetaRecommendationConfigDto  -RecommenderFeatures [jobTitle, location, peer_group, department, active] `
 -PeerGroupPercentageThreshold 0.5 `
 -RunAutoSelectOnce false `
 -OnlyTuneThreshold false
  • Convert the resource to JSON
$RecommendationConfigDto | ConvertTo-JSON

[Back to top]