Files
developer.sailpoint.com/docs/tools/sdk/powershell/Reference/V2025/Models/EntitlementAttributeBulkUpdateQueryRequest.md
2025-07-25 19:22:56 +00:00

1.7 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-entitlement-attribute-bulk-update-query-request EntitlementAttributeBulkUpdateQueryRequest EntitlementAttributeBulkUpdateQueryRequest EntitlementAttributeBulkUpdateQueryRequest powershellsdk
powershell
PowerShell
sdk
EntitlementAttributeBulkUpdateQueryRequest
V2025EntitlementAttributeBulkUpdateQueryRequest
/tools/sdk/powershell/v2025/models/entitlement-attribute-bulk-update-query-request
SDK
Software Development Kit
EntitlementAttributeBulkUpdateQueryRequest
V2025EntitlementAttributeBulkUpdateQueryRequest

EntitlementAttributeBulkUpdateQueryRequest

Properties

Name Type Description Notes
Query 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 The metadata to be updated, including attribute and values. [optional]

Examples

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

[Back to top]