Skip to main content

RoleMiningSessionParametersDto

Properties

NameTypeDescriptionNotes
IdStringThe ID of the role mining session[optional]
NameStringThe session's saved name[optional]
MinNumIdentitiesInPotentialRoleInt32Minimum number of identities in a potential role[optional]
PruneThresholdInt32The prune threshold to be used or null to calculate prescribedPruneThreshold[optional]
SavedBooleanThe session's saved status[optional] [default to $true]
ScopeRoleMiningSessionScope[optional]
TypeRoleMiningRoleType[optional]
StateRoleMiningSessionState[optional]
ScopingMethodRoleMiningSessionScopingMethod[optional]

Examples

  • Prepare the resource
$RoleMiningSessionParametersDto = Initialize-PSSailpoint.V2024RoleMiningSessionParametersDto  -Id 9f36f5e5-1e81-4eca-b087-548959d91c71 `
-Name Saved RM Session - 07/10 `
-MinNumIdentitiesInPotentialRole 20 `
-PruneThreshold 5 `
-Saved true `
-Scope null `
-Type null `
-State null `
-ScopingMethod null
  • Convert the resource to JSON
$RoleMiningSessionParametersDto | ConvertTo-JSON

[Back to top]