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-publish-summary
title: UserLevelPublishSummary
pagination_label: UserLevelPublishSummary
sidebar_label: UserLevelPublishSummary
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'UserLevelPublishSummary', 'V2025UserLevelPublishSummary']
slug: /tools/sdk/powershell/v2025/models/user-level-publish-summary
tags: ['SDK', 'Software Development Kit', 'UserLevelPublishSummary', 'V2025UserLevelPublishSummary']
---
# UserLevelPublishSummary
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**UserLevelId** | **String** | The unique identifier of the UserLevel. | [optional]
**Publish** | **Boolean** | Indicates whether the API call triggered a publish operation. | [optional] [default to $false]
**Status** | **String** | The status of the UserLevel publish operation. | [optional]
**Modified** | **System.DateTime** | The last modification timestamp of the UserLevel. | [optional]
## Examples
- Prepare the resource
```powershell
$UserLevelPublishSummary = Initialize-V2025UserLevelPublishSummary -UserLevelId 6e110911-5984-491b-be74-2707980a46a7 `
-Publish true `
-Status ACTIVE `
-Modified 2023-01-02T12:00Z
```
- Convert the resource to JSON
```powershell
$UserLevelPublishSummary | ConvertTo-JSON
```
[[Back to top]](#)