Skip to main content

RoleMiningSessionDto

Properties

NameTypeDescriptionNotes
ScopeRoleMiningSessionScope[optional]
PruneThresholdInt32The prune threshold to be used or null to calculate prescribedPruneThreshold[optional]
PrescribedPruneThresholdInt32The calculated prescribedPruneThreshold[optional]
MinNumIdentitiesInPotentialRoleInt32Minimum number of identities in a potential role[optional]
PotentialRoleCountInt32Number of potential roles[optional]
PotentialRolesReadyCountInt32Number of potential roles ready[optional]
TypeRoleMiningRoleType[optional]
EmailRecipientIdStringThe id of the user who will receive an email about the role mining session[optional]
IdentityCountInt32Number of identities in the population which meet the search criteria or identity list provided[optional]
SavedBooleanThe session's saved status[optional] [default to $false]
NameStringThe session's saved name[optional]

Examples

  • Prepare the resource
$RoleMiningSessionDto = Initialize-PSSailpoint.BetaRoleMiningSessionDto  -Scope null `
-PruneThreshold 50 `
-PrescribedPruneThreshold 10 `
-MinNumIdentitiesInPotentialRole 20 `
-PotentialRoleCount 0 `
-PotentialRolesReadyCount 0 `
-Type null `
-EmailRecipientId 2c918090761a5aac0176215c46a62d58 `
-IdentityCount 0 `
-Saved true `
-Name Saved RM Session - 07/10
  • Convert the resource to JSON
$RoleMiningSessionDto | ConvertTo-JSON

[Back to top]