Skip to main content

RecommenderCalculations

Properties

NameTypeDescriptionNotes
IdentityIdStringThe ID of the identity[optional]
EntitlementIdStringThe entitlement ID[optional]
RecommendationStringThe actual recommendation[optional]
OverallWeightedScoreDecimalThe overall weighted score[optional]
FeatureWeightedScoresmap[string]DecimalThe weighted score of each individual feature[optional]
ThresholdDecimalThe configured value against which the overallWeightedScore is compared[optional]
IdentityAttributesmap[string]RecommenderCalculationsIdentityAttributesValueThe values for your configured features[optional]
FeatureValuesFeatureValueDto[optional]

Examples

  • Prepare the resource
$RecommenderCalculations = Initialize-PSSailpoint.V2024RecommenderCalculations  -IdentityId 2c91808457d8f3ab0157e3e62cb4213c `
-EntitlementId 2c91809050db617d0150e0bf3215385e `
-Recommendation YES `
-OverallWeightedScore null `
-FeatureWeightedScores null `
-Threshold null `
-IdentityAttributes null `
-FeatureValues null
  • Convert the resource to JSON
$RecommenderCalculations | ConvertTo-JSON

[Back to top]