Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleInsightsInsight.md
2025-02-03 22:09:17 +00:00

1.4 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
v2024-role-insights-insight RoleInsightsInsight RoleInsightsInsight RoleInsightsInsight powershellsdk
powershell
PowerShell
sdk
RoleInsightsInsight
V2024RoleInsightsInsight
/tools/sdk/powershell/v2024/models/role-insights-insight
SDK
Software Development Kit
RoleInsightsInsight
V2024RoleInsightsInsight

RoleInsightsInsight

Properties

Name Type Description Notes
Type String The number of identities in this role with the entitlement. [optional]
IdentitiesWithAccess Int32 The number of identities in this role with the entitlement. [optional]
IdentitiesImpacted Int32 The number of identities in this role that do not have the specified entitlement. [optional]
TotalNumberOfIdentities Int32 The total number of identities. [optional]
ImpactedIdentityNames String [optional]

Examples

  • Prepare the resource
$RoleInsightsInsight = Initialize-PSSailpoint.V2024RoleInsightsInsight  -Type ADD `
 -IdentitiesWithAccess 850 `
 -IdentitiesImpacted 150 `
 -TotalNumberOfIdentities 1000 `
 -ImpactedIdentityNames null
  • Convert the resource to JSON
$RoleInsightsInsight | ConvertTo-JSON

[Back to top]