--- id: beta-role-insights-entitlement-changes title: RoleInsightsEntitlementChanges pagination_label: RoleInsightsEntitlementChanges sidebar_label: RoleInsightsEntitlementChanges sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'RoleInsightsEntitlementChanges', 'BetaRoleInsightsEntitlementChanges'] slug: /tools/sdk/powershell/beta/models/role-insights-entitlement-changes tags: ['SDK', 'Software Development Kit', 'RoleInsightsEntitlementChanges', 'BetaRoleInsightsEntitlementChanges'] --- # RoleInsightsEntitlementChanges ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Name** | **String** | Name of the entitlement | [optional] **Id** | **String** | Id of the entitlement | [optional] **Description** | **String** | Description for the entitlement | [optional] **Attribute** | **String** | Attribute for the entitlement | [optional] **Value** | **String** | Attribute value for the entitlement | [optional] **Source** | **String** | Source or the application for the entitlement | [optional] **Insight** | [**RoleInsightsInsight**](role-insights-insight) | | [optional] ## Examples - Prepare the resource ```powershell $RoleInsightsEntitlementChanges = Initialize-PSSailpoint.BetaRoleInsightsEntitlementChanges -Name null ` -Id null ` -Description null ` -Attribute null ` -Value null ` -Source null ` -Insight null ``` - Convert the resource to JSON ```powershell $RoleInsightsEntitlementChanges | ConvertTo-JSON ``` [[Back to top]](#)