Skip to main content

EntitlementAttributeBulkUpdateIdsRequest

Properties

NameTypeDescriptionNotes
entitlements[]strList of entitlement IDs to update.[optional]
operationEnum [ 'ADD', 'REMOVE', 'REPLACE' ]Operation to perform on the attributes in the bulk update request.[optional]
replace_scopeEnum [ 'ALL', 'ATTRIBUTE' ]The choice of update scope.[optional]
values[]RoleMetadataBulkUpdateByIdRequestValuesInnerThe metadata to be updated, including attribute and values.[optional]
}

Example

from sailpoint.v2025.models.entitlement_attribute_bulk_update_ids_request import EntitlementAttributeBulkUpdateIdsRequest

entitlement_attribute_bulk_update_ids_request = EntitlementAttributeBulkUpdateIdsRequest(
entitlements=[2c9180867817ac4d017817c491119a20, 2c9180867817ac4d017817c491119a21],
operation='add',
replace_scope='attribute',
values=[{attribute=iscFederalClassifications, values=[topSecret]}]
)

[Back to top]