add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,50 @@
---
id: v2025-role-insights-entitlement-changes
title: RoleInsightsEntitlementChanges
pagination_label: RoleInsightsEntitlementChanges
sidebar_label: RoleInsightsEntitlementChanges
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleInsightsEntitlementChanges', 'V2025RoleInsightsEntitlementChanges']
slug: /tools/sdk/python/v2025/models/role-insights-entitlement-changes
tags: ['SDK', 'Software Development Kit', 'RoleInsightsEntitlementChanges', 'V2025RoleInsightsEntitlementChanges']
---
# RoleInsightsEntitlementChanges
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the entitlement | [optional]
**id** | **str** | Id of the entitlement | [optional]
**description** | **str** | Description for the entitlement | [optional]
**attribute** | **str** | Attribute for the entitlement | [optional]
**value** | **str** | Attribute value for the entitlement | [optional]
**source** | **str** | Source or the application for the entitlement | [optional]
**insight** | [**RoleInsightsInsight**](role-insights-insight) | | [optional]
}
## Example
```python
from sailpoint.v2025.models.role_insights_entitlement_changes import RoleInsightsEntitlementChanges
role_insights_entitlement_changes = RoleInsightsEntitlementChanges(
name='Administrator',
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
description='Full administrative access to IdentityNow',
attribute='assignedGroups',
value='ORG_ADMIN',
source='IdentityNow',
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 = '', )
)
```
[[Back to top]](#)