mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.8 KiB
1.8 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 |
|
/tools/sdk/python/v2024/models/role-insights-entitlement-changes |
|
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='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 = '', )
)