Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/RoleInsightsResponse.md
2025-04-01 09:23:12 -04:00

1.6 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-insights-response RoleInsightsResponse RoleInsightsResponse RoleInsightsResponse pythonsdk
python
Python
sdk
RoleInsightsResponse
V2025RoleInsightsResponse
/tools/sdk/python/v2025/models/role-insights-response
SDK
Software Development Kit
RoleInsightsResponse
V2025RoleInsightsResponse

RoleInsightsResponse

Properties

Name Type Description Notes
id str Request Id for a role insight generation request [optional]
created_date datetime The date-time role insights request was created. [optional]
last_generated datetime The date-time role insights request was completed. [optional]
number_of_updates int Total number of updates for this request. Starts with 0 and will have correct number when request is COMPLETED. [optional]
role_ids []str The role IDs that are in this request. [optional]
status Enum [ 'CREATED', 'IN PROGRESS', 'COMPLETED', 'FAILED' ] Request status [optional]
}

Example

from sailpoint.v2025.models.role_insights_response import RoleInsightsResponse

role_insights_response = RoleInsightsResponse(
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
created_date='2020-09-16T18:49:32.150Z',
last_generated='2020-09-16T18:50:12.150Z',
number_of_updates=0,
role_ids=[
                    ''
                    ],
status='CREATED'
)

[Back to top]