Update PowerShell SDK docs: 16529915541

This commit is contained in:
developer-relations-sp
2025-07-25 19:22:56 +00:00
parent 96e808b98b
commit 456f1a8b11
35 changed files with 1367 additions and 26 deletions

View File

@@ -0,0 +1,41 @@
---
id: v2025-access-model-metadata-bulk-update-response
title: AccessModelMetadataBulkUpdateResponse
pagination_label: AccessModelMetadataBulkUpdateResponse
sidebar_label: AccessModelMetadataBulkUpdateResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'AccessModelMetadataBulkUpdateResponse', 'V2025AccessModelMetadataBulkUpdateResponse']
slug: /tools/sdk/powershell/v2025/models/access-model-metadata-bulk-update-response
tags: ['SDK', 'Software Development Kit', 'AccessModelMetadataBulkUpdateResponse', 'V2025AccessModelMetadataBulkUpdateResponse']
---
# AccessModelMetadataBulkUpdateResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Id** | **String** | ID of the task which is executing the bulk update. | [optional]
**Type** | **String** | Type of the bulk update object. | [optional]
**Status** | **Enum** [ "CREATED", "PRE_PROCESS", "PRE_PROCESS_COMPLETED", "POST_PROCESS", "COMPLETED", "CHUNK_PENDING", "CHUNK_PROCESSING", "RE_PROCESSING", "PRE_PROCESS_FAILED", "FAILED" ] | The status of the bulk update request, only list unfinished request's status. | [optional]
**Created** | **System.DateTime** | Time when the bulk update request was created | [optional]
## Examples
- Prepare the resource
```powershell
$AccessModelMetadataBulkUpdateResponse = Initialize-V2025AccessModelMetadataBulkUpdateResponse -Id 2c9180867817ac4d017817c491119a20 `
-Type Role `
-Status CREATED `
-Created 2020-10-08T18:33:52.029Z
```
- Convert the resource to JSON
```powershell
$AccessModelMetadataBulkUpdateResponse | ConvertTo-JSON
```
[[Back to top]](#)