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

1.8 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-ids-request EntitlementAttributeBulkUpdateIdsRequest EntitlementAttributeBulkUpdateIdsRequest EntitlementAttributeBulkUpdateIdsRequest powershellsdk
powershell
PowerShell
sdk
EntitlementAttributeBulkUpdateIdsRequest
V2025EntitlementAttributeBulkUpdateIdsRequest
/tools/sdk/powershell/v2025/models/entitlement-attribute-bulk-update-ids-request
SDK
Software Development Kit
EntitlementAttributeBulkUpdateIdsRequest
V2025EntitlementAttributeBulkUpdateIdsRequest

EntitlementAttributeBulkUpdateIdsRequest

Properties

Name Type Description Notes
Entitlements []String List of entitlement IDs to update. [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
$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]