Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/RoleInsightsEntitlement.md
2025-04-01 09:23:12 -04:00

1.3 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-role-insights-entitlement RoleInsightsEntitlement RoleInsightsEntitlement RoleInsightsEntitlement pythonsdk
python
Python
sdk
RoleInsightsEntitlement
V2025RoleInsightsEntitlement
/tools/sdk/python/v2025/models/role-insights-entitlement
SDK
Software Development Kit
RoleInsightsEntitlement
V2025RoleInsightsEntitlement

RoleInsightsEntitlement

Properties

Name Type Description Notes
name str Name of the entitlement [optional]
id str Id of the entitlement [optional]
description str Description for the entitlement [optional]
source str Source or the application for the entitlement [optional]
attribute str Attribute for the entitlement [optional]
value str Attribute value for the entitlement [optional]
}

Example

from sailpoint.v2025.models.role_insights_entitlement import RoleInsightsEntitlement

role_insights_entitlement = RoleInsightsEntitlement(
name='Administrator',
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
description='Full administrative access to IdentityNow',
source='IdentityNow',
attribute='assignedGroups',
value='ORG_ADMIN'
)

[Back to top]