Skip to main content

RoleMiningSessionResponse

Properties

NameTypeDescriptionNotes
ScopeRoleMiningSessionScope[optional]
MinNumIdentitiesInPotentialRoleInt32Minimum number of identities in a potential role[optional]
ScopingMethodStringThe scoping method of the role mining session[optional]
PrescribedPruneThresholdInt32The computed (or prescribed) prune threshold for this session[optional]
PruneThresholdInt32The prune threshold to be used for this role mining session[optional]
PotentialRoleCountInt32The number of potential roles[optional]
PotentialRolesReadyCountInt32The number of potential roles which have completed processing[optional]
StatusRoleMiningSessionStatus[optional]
EmailRecipientIdStringThe id of the user who will receive an email about the role mining session[optional]
CreatedByRoleMiningSessionResponseCreatedBy[optional]
IdentityCountInt32The number of identities[optional]
SavedBooleanThe session's saved status[optional] [default to $false]
NameStringThe session's saved name[optional]
DataFilePathStringThe data file path of the role mining session[optional]
IdStringSession Id for this role mining session[optional]
CreatedDateSystem.DateTimeThe date-time when this role mining session was created.[optional]
ModifiedDateSystem.DateTimeThe date-time when this role mining session was completed.[optional]
TypeRoleMiningRoleType[optional]

Examples

  • Prepare the resource
$RoleMiningSessionResponse = Initialize-PSSailpoint.V2024RoleMiningSessionResponse  -Scope null `
-MinNumIdentitiesInPotentialRole 20 `
-ScopingMethod AUTO_RM `
-PrescribedPruneThreshold 83 `
-PruneThreshold 70 `
-PotentialRoleCount 8 `
-PotentialRolesReadyCount 4 `
-Status null `
-EmailRecipientId null `
-CreatedBy null `
-IdentityCount 39 `
-Saved true `
-Name Saved RM Session - 07/10 `
-DataFilePath null `
-Id 8c190e67-87aa-4ed9-a90b-d9d5344523fb `
-CreatedDate null `
-ModifiedDate null `
-Type null
  • Convert the resource to JSON
$RoleMiningSessionResponse | ConvertTo-JSON

[Back to top]