Skip to main content

Entitlementattributebulkupdatequeryrequest

Properties

NameTypeDescriptionNotes
QuerySearch[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[]BulkupdateammkeyvalueInnerThe metadata to be updated, including attribute and values.[optional]

Examples

  • Prepare the resource
$Entitlementattributebulkupdatequeryrequest = Initialize-Entitlementattributebulkupdatequeryrequest  -Query null `
-Operation add `
-ReplaceScope attribute `
-Values [{"attribute":"iscFederalClassifications","values":["topSecret"]}]
  • Convert the resource to JSON
$Entitlementattributebulkupdatequeryrequest | ConvertTo-JSON

[Back to top]