Skip to main content

EntitlementAttributeBulkUpdateFilterRequest

Properties

NameTypeDescriptionNotes
FiltersStringFilter results using the standard syntax described in V3 API Standard Collection Parameters Filtering is supported for the following fields and operators: id: eq[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
$EntitlementAttributeBulkUpdateFilterRequest = Initialize-V2025EntitlementAttributeBulkUpdateFilterRequest  -Filters id eq 2c9180867817ac4d017817c491119a20 `
-Operation add `
-ReplaceScope attribute `
-Values [{attribute=iscFederalClassifications, values=[topSecret]}]
  • Convert the resource to JSON
$EntitlementAttributeBulkUpdateFilterRequest | ConvertTo-JSON

[Back to top]