Skip to main content

RoleMiningPotentialRoleSummary

Properties

NameTypeDescriptionNotes
IdStringId of the potential role[optional]
NameStringName of the potential role[optional]
PotentialRoleRefRoleMiningPotentialRoleRef[optional]
IdentityCountInt32The number of identities in a potential role.[optional]
EntitlementCountInt32The number of entitlements in a potential role.[optional]
IdentityGroupStatusStringThe status for this identity group which can be ""REQUESTED"" or ""OBTAINED""[optional]
ProvisionStateRoleMiningPotentialRoleProvisionState[optional]
RoleIdStringID of the provisioned role in IIQ or IDN. Null if this potential role has not been provisioned.[optional]
DensityInt32The density metric (0-100) of this potential role. Higher density values indicate higher similarity amongst the identities.[optional]
FreshnessInt32The freshness metric (0-100) of this potential role. Higher freshness values indicate this potential role is more distinctive compared to existing roles.[optional]
QualityInt32The quality metric (0-100) of this potential role. Higher quality values indicate this potential role has high density and freshness.[optional]
TypeRoleMiningRoleType[optional]
CreatedByRoleMiningPotentialRoleSummaryCreatedBy[optional]
CreatedDateSystem.DateTimeThe date-time when this potential role was created.[optional]
SavedBooleanThe potential role's saved status[optional] [default to $false]
DescriptionStringDescription of the potential role[optional]
SessionRoleMiningSessionParametersDto[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]