Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2024/Models/RoleMiningPotentialRoleProvisionRequest.md
2025-02-03 22:09:17 +00:00

1.8 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-role-mining-potential-role-provision-request RoleMiningPotentialRoleProvisionRequest RoleMiningPotentialRoleProvisionRequest RoleMiningPotentialRoleProvisionRequest powershellsdk
powershell
PowerShell
sdk
RoleMiningPotentialRoleProvisionRequest
V2024RoleMiningPotentialRoleProvisionRequest
/tools/sdk/powershell/v2024/models/role-mining-potential-role-provision-request
SDK
Software Development Kit
RoleMiningPotentialRoleProvisionRequest
V2024RoleMiningPotentialRoleProvisionRequest

RoleMiningPotentialRoleProvisionRequest

Properties

Name Type Description Notes
RoleName String Name of the new role being created [optional]
RoleDescription String Short description of the new role being created [optional]
OwnerId String ID of the identity that will own this role [optional]
IncludeIdentities Boolean When true, create access requests for the identities associated with the potential role [optional] [default to $false]
DirectlyAssignedEntitlements Boolean When 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.V2024RoleMiningPotentialRoleProvisionRequest  -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]