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-entitlement-attribute-bulk-update-query-request
title: EntitlementAttributeBulkUpdateQueryRequest
pagination_label: EntitlementAttributeBulkUpdateQueryRequest
sidebar_label: EntitlementAttributeBulkUpdateQueryRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'EntitlementAttributeBulkUpdateQueryRequest', 'V2025EntitlementAttributeBulkUpdateQueryRequest']
slug: /tools/sdk/powershell/v2025/models/entitlement-attribute-bulk-update-query-request
tags: ['SDK', 'Software Development Kit', 'EntitlementAttributeBulkUpdateQueryRequest', 'V2025EntitlementAttributeBulkUpdateQueryRequest']
---
# EntitlementAttributeBulkUpdateQueryRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Query** | [**Search**](search) | | [optional]
**Operation** | **Enum** [ "ADD", "REMOVE", "REPLACE" ] | Operation to perform on the attributes in the bulk update request. | [optional]
**ReplaceScope** | **Enum** [ "ALL", "ATTRIBUTE" ] | The choice of update scope. | [optional]
**Values** | [**[]RoleMetadataBulkUpdateByIdRequestValuesInner**](role-metadata-bulk-update-by-id-request-values-inner) | The metadata to be updated, including attribute and values. | [optional]
## Examples
- Prepare the resource
```powershell
$EntitlementAttributeBulkUpdateQueryRequest = Initialize-V2025EntitlementAttributeBulkUpdateQueryRequest -Query null `
-Operation add `
-ReplaceScope attribute `
-Values [{attribute=iscFederalClassifications, values=[topSecret]}]
```
- Convert the resource to JSON
```powershell
$EntitlementAttributeBulkUpdateQueryRequest | ConvertTo-JSON
```
[[Back to top]](#)