mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.3 KiB
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 | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| beta-role-insights-insight | RoleInsightsInsight | RoleInsightsInsight | RoleInsightsInsight | pythonsdk |
|
/tools/sdk/python/beta/models/role-insights-insight |
|
RoleInsightsInsight
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | The number of identities in this role with the entitlement. | [optional] |
| identities_with_access | int | The number of identities in this role with the entitlement. | [optional] |
| identities_impacted | int | The number of identities in this role that do not have the specified entitlement. | [optional] |
| total_number_of_identities | int | The total number of identities. | [optional] |
| impacted_identity_names | str | [optional] | |
| } |
Example
from sailpoint.beta.models.role_insights_insight import RoleInsightsInsight
role_insights_insight = RoleInsightsInsight(
type='ADD',
identities_with_access=850,
identities_impacted=150,
total_number_of_identities=1000,
impacted_identity_names=''
)