Skip to main content

EntitlementAttributeBulkUpdateIdsRequest

Properties

NameTypeDescriptionNotes
Entitlements[]StringList of entitlement IDs to update.[optional]
OperationEnum [ "ADD", "REMOVE", "REPLACE" ]Operation to perform on the attributes in the bulk update request.[optional]
ReplaceScopeEnum [ "ALL", "ATTRIBUTE" ]The choice of update scope.[optional]
Values[]RoleMetadataBulkUpdateByIdRequestValuesInnerThe metadata to be updated, including attribute and values.[optional]

Examples

  • Prepare the resource
$EntitlementAttributeBulkUpdateIdsRequest = Initialize-V2025EntitlementAttributeBulkUpdateIdsRequest  -Entitlements [2c9180867817ac4d017817c491119a20, 2c9180867817ac4d017817c491119a21] `
-Operation add `
-ReplaceScope attribute `
-Values [{attribute=iscFederalClassifications, values=[topSecret]}]
  • Convert the resource to JSON
$EntitlementAttributeBulkUpdateIdsRequest | ConvertTo-JSON

[Back to top]