Skip to main content

RecommendationConfigDto

Properties

NameTypeDescriptionNotes
RecommenderFeatures[]StringList of identity attributes to use for calculating certification recommendations[optional]
PeerGroupPercentageThresholdDoubleThe percent value that the recommendation calculation must surpass to produce a YES recommendation[optional]
RunAutoSelectOnceBooleanIf true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run[optional] [default to $false]
OnlyTuneThresholdBooleanIf 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

[Back to top]