Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleMiningEntitlement.md
2025-01-28 13:29:29 -05:00

2.1 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-mining-entitlement RoleMiningEntitlement RoleMiningEntitlement RoleMiningEntitlement powershellsdk
powershell
PowerShell
sdk
RoleMiningEntitlement
V2024RoleMiningEntitlement
/tools/sdk/powershell/v2024/models/role-mining-entitlement
SDK
Software Development Kit
RoleMiningEntitlement
V2024RoleMiningEntitlement

RoleMiningEntitlement

Properties

Name Type Description Notes
EntitlementRef Pointer to RoleMiningEntitlementRef [optional]
Name Pointer to String Name of the entitlement [optional]
ApplicationName Pointer to String Application name of the entitlement [optional]
IdentityCount Pointer to Int32 The number of identities with this entitlement in a role. [optional]
Popularity Pointer to Double The % popularity of this entitlement in a role. [optional]
PopularityInOrg Pointer to Double The % popularity of this entitlement in the org. [optional]
SourceId Pointer to String The ID of the source/application. [optional]
ActivitySourceState Pointer to String The status of activity data for the source. Value is complete or notComplete. [optional]
SourceUsagePercent Pointer to Double The percentage of identities in the potential role that have usage of the source/application of this entitlement. [optional]

Examples

  • Prepare the resource
$RoleMiningEntitlement = Initialize-PSSailpoint.V2024RoleMiningEntitlement  -EntitlementRef null `
 -Name Add/modify/delete users `
 -ApplicationName AppName `
 -IdentityCount 45 `
 -Popularity 65.2 `
 -PopularityInOrg 35.8 `
 -SourceId 2c9180877620c1460176267f336a106f `
 -ActivitySourceState complete `
 -SourceUsagePercent 65.6
  • Convert the resource to JSON
$RoleMiningEntitlement | ConvertTo-JSON

[Back to top]