Skip to main content

RoleMiningPotentialRoleProvisionRequest

Properties

NameTypeDescriptionNotes
RoleNameStringName of the new role being created[optional]
RoleDescriptionStringShort description of the new role being created[optional]
OwnerIdStringID of the identity that will own this role[optional]
IncludeIdentitiesBooleanWhen true, create access requests for the identities associated with the potential role[optional] [default to $false]
DirectlyAssignedEntitlementsBooleanWhen true, assign entitlements directly to the role; otherwise, create access profiles containing the entitlements[optional] [default to $false]

Examples

  • Prepare the resource
$RoleMiningPotentialRoleProvisionRequest = Initialize-PSSailpoint.BetaRoleMiningPotentialRoleProvisionRequest  -RoleName Finance - Accounting `
-RoleDescription General access for accounting department `
-OwnerId 2b568c65bc3c4c57a43bd97e3a8e41 `
-IncludeIdentities true `
-DirectlyAssignedEntitlements false
  • Convert the resource to JSON
$RoleMiningPotentialRoleProvisionRequest | ConvertTo-JSON

[Back to top]