Skip to main content

Recommendationconfigdto

Properties

NameTypeDescriptionNotes
recommender_features[]strList of identity attributes to use for calculating certification recommendations[optional]
peer_group_percentage_thresholdfloatThe percent value that the recommendation calculation must surpass to produce a YES recommendation[optional]
run_auto_select_onceboolIf true, rulesRecommenderConfig will be refreshed with new programatically selected attribute and threshold values on the next pipeline run[optional] [default to False]
only_tune_thresholdboolIf true, rulesRecommenderConfig will be refreshed with new programatically selected threshold values on the next pipeline run[optional] [default to False]
}

Example

from sailpoint.iai_recommendations.models.recommendationconfigdto import Recommendationconfigdto

recommendationconfigdto = Recommendationconfigdto(
recommender_features=["jobTitle","location","peer_group","department","active"],
peer_group_percentage_threshold=0.5,
run_auto_select_once=False,
only_tune_threshold=False
)

[Back to top]