Skip to main content

Privilegedrecommendationinstance

An individual entitlement instance within a privileged recommendation group.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier for this entitlement instance.[optional]
attributestrThe entitlement attribute name.[optional]
source_idstrThe ID of the source that owns this entitlement.[optional]
source_namestrThe display name of the source.[optional]
typestrThe entitlement type.[optional]
valuestrThe entitlement value or distinguished name.[optional]
statusstrThe current review status of this instance.[optional]
privilege_levelstrThe currently assigned privilege level, if any.[optional]
descriptionstrThe current description of the entitlement, if one exists.[optional]
recommended_atdatetimeThe timestamp when this instance was recommended.[optional]
}

Example

from sailpoint.suggested_entitlement_description.models.privilegedrecommendationinstance import Privilegedrecommendationinstance

privilegedrecommendationinstance = Privilegedrecommendationinstance(
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]