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-Recommendationconfigdto  -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]