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

3.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-mining-potential-role-summary RoleMiningPotentialRoleSummary RoleMiningPotentialRoleSummary RoleMiningPotentialRoleSummary powershellsdk
powershell
PowerShell
sdk
RoleMiningPotentialRoleSummary
V2024RoleMiningPotentialRoleSummary
/tools/sdk/powershell/v2024/models/role-mining-potential-role-summary
SDK
Software Development Kit
RoleMiningPotentialRoleSummary
V2024RoleMiningPotentialRoleSummary

RoleMiningPotentialRoleSummary

Properties

Name Type Description Notes
Id Pointer to String Id of the potential role [optional]
Name Pointer to String Name of the potential role [optional]
PotentialRoleRef Pointer to RoleMiningPotentialRoleRef [optional]
IdentityCount Pointer to Int32 The number of identities in a potential role. [optional]
EntitlementCount Pointer to Int32 The number of entitlements in a potential role. [optional]
IdentityGroupStatus Pointer to String The status for this identity group which can be ""REQUESTED"" or ""OBTAINED"" [optional]
ProvisionState Pointer to RoleMiningPotentialRoleProvisionState [optional]
RoleId Pointer to String ID of the provisioned role in IIQ or IDN. Null if this potential role has not been provisioned. [optional]
Density Pointer to Int32 The density metric (0-100) of this potential role. Higher density values indicate higher similarity amongst the identities. [optional]
Freshness Pointer to Int32 The freshness metric (0-100) of this potential role. Higher freshness values indicate this potential role is more distinctive compared to existing roles. [optional]
Quality Pointer to Int32 The quality metric (0-100) of this potential role. Higher quality values indicate this potential role has high density and freshness. [optional]
Type Pointer to RoleMiningRoleType [optional]
CreatedBy Pointer to RoleMiningPotentialRoleSummaryCreatedBy [optional]
CreatedDate Pointer to System.DateTime The date-time when this potential role was created. [optional]
Saved Pointer to Boolean The potential role's saved status [optional] [default to $false]
Description Pointer to String Description of the potential role [optional]
Session Pointer to RoleMiningSessionParametersDto [optional]

Examples

  • Prepare the resource
$RoleMiningPotentialRoleSummary = Initialize-PSSailpoint.V2024RoleMiningPotentialRoleSummary  -Id e0cc5d7d-bf7f-4f81-b2af-8885b09d9923 `
 -Name Potential Role - e0cc5d `
 -PotentialRoleRef null `
 -IdentityCount 25 `
 -EntitlementCount 15 `
 -IdentityGroupStatus OBTAINED `
 -ProvisionState null `
 -RoleId 2a4be6fbcf3c4e66b95a0c15ffd591 `
 -Density 90 `
 -Freshness 70 `
 -Quality 80 `
 -Type null `
 -CreatedBy null `
 -CreatedDate null `
 -Saved true `
 -Description null `
 -Session null
  • Convert the resource to JSON
$RoleMiningPotentialRoleSummary | ConvertTo-JSON

[Back to top]