Update PowerShell SDK docs: 16303883694

This commit is contained in:
developer-relations-sp
2025-07-15 20:43:13 +00:00
parent 7c0df548cb
commit ca8fe2cde7
31 changed files with 954 additions and 40 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-user-level-request
title: UserLevelRequest
pagination_label: UserLevelRequest
sidebar_label: UserLevelRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UserLevelRequest', 'V2025UserLevelRequest']
slug: /tools/sdk/powershell/v2025/models/user-level-request
tags: ['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**](base-reference-dto) | | [required]
**RightSets** | **[]String** | A list of rights associated with the user level. | [optional]
## Examples
- Prepare the resource
```powershell
$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
```powershell
$UserLevelRequest | ConvertTo-JSON
```
[[Back to top]](#)