Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/UserLevelRequest.md
2025-07-15 20:43:13 +00:00

1.2 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
v2025-user-level-request UserLevelRequest UserLevelRequest UserLevelRequest powershellsdk
powershell
PowerShell
sdk
UserLevelRequest
V2025UserLevelRequest
/tools/sdk/powershell/v2025/models/user-level-request
SDK
Software Development Kit
UserLevelRequest
V2025UserLevelRequest

UserLevelRequest

Properties

Name Type Description Notes
Name String The name of the user level. [required]
Description String A brief description of the user level. [required]
Owner BaseReferenceDto [required]
RightSets []String A list of rights associated with the user level. [optional]

Examples

  • Prepare the resource
$UserLevelRequest = Initialize-V2025UserLevelRequest  -Name Custom User Level Name `
 -Description This is a description of the custom user level. `
 -Owner null `
 -RightSets [idn:ui-right-set-list-read-example, idn:ui-right-set-write-example]
  • Convert the resource to JSON
$UserLevelRequest | ConvertTo-JSON

[Back to top]