Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/Beta/Models/RoleInsightsInsight.md
2025-01-28 13:29:29 -05: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
beta-role-insights-insight RoleInsightsInsight RoleInsightsInsight RoleInsightsInsight powershellsdk
powershell
PowerShell
sdk
RoleInsightsInsight
BetaRoleInsightsInsight
/tools/sdk/powershell/beta/models/role-insights-insight
SDK
Software Development Kit
RoleInsightsInsight
BetaRoleInsightsInsight

RoleInsightsInsight

Properties

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

Examples

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

[Back to top]