Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/RoleInsightsEntitlementChanges.md
2025-02-20 12:59:19 -05:00

1.7 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
v2024-role-insights-entitlement-changes RoleInsightsEntitlementChanges RoleInsightsEntitlementChanges RoleInsightsEntitlementChanges pythonsdk
python
Python
sdk
RoleInsightsEntitlementChanges
V2024RoleInsightsEntitlementChanges
/tools/sdk/python/v2024/models/role-insights-entitlement-changes
SDK
Software Development Kit
RoleInsightsEntitlementChanges
V2024RoleInsightsEntitlementChanges

RoleInsightsEntitlementChanges

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]
attribute str Attribute for the entitlement [optional]
value str Attribute value for the entitlement [optional]
source str Source or the application for the entitlement [optional]
insight RoleInsightsInsight [optional]
}

Example

from sailpoint.v2024.models.role_insights_entitlement_changes import RoleInsightsEntitlementChanges

role_insights_entitlement_changes = RoleInsightsEntitlementChanges(
name='',
id='',
description='',
attribute='',
value='',
source='',
insight=sailpoint.v2024.models.role_insights_insight.RoleInsightsInsight(
                    type = 'ADD', 
                    identities_with_access = 850, 
                    identities_impacted = 150, 
                    total_number_of_identities = 1000, 
                    impacted_identity_names = '', )
)

[Back to top]