starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2024-role-insights-insight
title: RoleInsightsInsight
pagination_label: RoleInsightsInsight
sidebar_label: RoleInsightsInsight
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleInsightsInsight', 'V2024RoleInsightsInsight']
slug: /tools/sdk/python/v2024/models/role-insights-insight
tags: ['SDK', 'Software Development Kit', 'RoleInsightsInsight', 'V2024RoleInsightsInsight']
---
# 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
```python
from sailpoint.v2024.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=''
)
```
[[Back to top]](#)