mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
1.9 KiB
1.9 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-insight | RoleInsight | RoleInsight | RoleInsight | pythonsdk |
|
/tools/sdk/python/v2025/models/role-insight |
|
RoleInsight
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | Insight id | [optional] |
| number_of_updates | int | Total number of updates for this role | [optional] |
| created_date | datetime | The date-time insights were last created for this role. | [optional] |
| modified_date | datetime | The date-time insights were last modified for this role. | [optional] |
| role | RoleInsightsRole | [optional] | |
| insight | RoleInsightsInsight | [optional] | |
| } |
Example
from sailpoint.v2025.models.role_insight import RoleInsight
role_insight = RoleInsight(
id='1467e61e-f284-439c-ba2d-c6cc11cf0941',
number_of_updates=5,
created_date=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
modified_date='2020-05-19T13:49:37.385Z',
role=sailpoint.v2025.models.role_insights_role.RoleInsightsRole(
name = 'Software Engineer',
id = '1467e61e-f284-439c-ba2d-c6cc11cf0941',
description = 'Person who develops software',
owner_name = 'Bob',
owner_id = '1467e61e-f284-439c-ba2d-c6cc11cf0941', ),
insight=sailpoint.v2025.models.role_insights_insight.RoleInsightsInsight(
type = 'ADD',
identities_with_access = 850,
identities_impacted = 150,
total_number_of_identities = 1000,
impacted_identity_names = '', )
)