Skip to main content

Recommendercalculations

Properties

NameTypeDescriptionNotes
identity_idstrThe ID of the identity[optional]
entitlement_idstrThe entitlement ID[optional]
recommendationstrThe actual recommendation[optional]
overall_weighted_scorefloatThe overall weighted score[optional]
feature_weighted_scoresmap[string]floatThe weighted score of each individual feature[optional]
thresholdfloatThe configured value against which the overallWeightedScore is compared[optional]
identity_attributesmap[string]RecommendercalculationsIdentityAttributesValueThe values for your configured features[optional]
feature_valuesFeaturevaluedto[optional]
}

Example

from sailpoint.iai_recommendations.models.recommendercalculations import Recommendercalculations

recommendercalculations = Recommendercalculations(
identity_id='2c91808457d8f3ab0157e3e62cb4213c',
entitlement_id='2c91809050db617d0150e0bf3215385e',
recommendation='YES',
overall_weighted_score=1.337,
feature_weighted_scores={
'key' : 1.337
},
threshold=1.337,
identity_attributes={
'key' : sailpoint.iai_recommendations.models.recommendercalculations_identity_attributes_value.recommendercalculations_identityAttributes_value(
value = '', )
},
feature_values=sailpoint.iai_recommendations.models.feature_value_dto.Feature Value Dto(
feature = 'department',
numerator = 14,
denominator = 14, )
)

[Back to top]