Skip to main content

Privilegedrecommendationgroup

A group of entitlement instances that share the same entitlement name and connector type, aggregated for privileged-access review.

Properties

NameTypeDescriptionNotes
entitlement_namestrThe name of the entitlement shared across all instances in this group.[optional]
connector_typestrThe connector type associated with all instances in this group.[optional]
recommendation_scorestrA decimal string representing the confidence score of the privilege recommendation (0.0-1.0).[optional]
org_countintThe number of organizations in which this entitlement appears as privileged.[optional]
instance_countintThe total number of individual entitlement instances in this group.[optional]
instances[]PrivilegedrecommendationinstanceThe individual entitlement instances belonging to this group.[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.privilegedrecommendationgroup import Privilegedrecommendationgroup

privilegedrecommendationgroup = Privilegedrecommendationgroup(
entitlement_name='Domain Admins',
connector_type='Active Directory - Direct',
recommendation_score='.85',
org_count=8,
instance_count=2,
instances=[
sailpoint.suggested_entitlement_description.models.privileged_recommendation_instance.Privileged Recommendation Instance(
id = 'd6127d2c-bd62-4217-b187-e4b28f328080',
attribute = 'memberOf',
source_id = '2c9180877a7c8e88017a7d1234567890',
source_name = 'AD Corp',
type = 'group',
value = 'CN=Domain Admins,CN=Users,DC=corp,DC=example,DC=com',
status = 'suggested',
privilege_level = 'high',
description = 'Grants full administrative access to the domain.',
recommended_at = '2026-03-01T00:00Z', )
]
)

[Back to top]