Skip to main content

RoleInsightsEntitlementChanges

Properties

NameTypeDescriptionNotes
namestrName of the entitlement[optional]
idstrId of the entitlement[optional]
descriptionstrDescription for the entitlement[optional]
attributestrAttribute for the entitlement[optional]
valuestrAttribute value for the entitlement[optional]
sourcestrSource or the application for the entitlement[optional]
insightRoleInsightsInsight[optional]
}

Example

from sailpoint.v2024.models.role_insights_entitlement_changes import RoleInsightsEntitlementChanges

role_insights_entitlement_changes = RoleInsightsEntitlementChanges(
name='Administrator',
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
description='Full administrative access to IdentityNow',
attribute='assignedGroups',
value='ORG_ADMIN',
source='IdentityNow',
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]