mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 20:37:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: beta-role-insights-response
|
||||
title: RoleInsightsResponse
|
||||
pagination_label: RoleInsightsResponse
|
||||
sidebar_label: RoleInsightsResponse
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RoleInsightsResponse', 'BetaRoleInsightsResponse']
|
||||
slug: /tools/sdk/python/beta/models/role-insights-response
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleInsightsResponse', 'BetaRoleInsightsResponse']
|
||||
---
|
||||
|
||||
# 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
|
||||
|
||||
```python
|
||||
from sailpoint.beta.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]](#)
|
||||
|
||||
Reference in New Issue
Block a user