mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
1.7 KiB
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-ids-request | EntitlementAttributeBulkUpdateIdsRequest | EntitlementAttributeBulkUpdateIdsRequest | EntitlementAttributeBulkUpdateIdsRequest | pythonsdk |
|
/tools/sdk/python/v2025/models/entitlement-attribute-bulk-update-ids-request |
|
EntitlementAttributeBulkUpdateIdsRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| entitlements | []str | List of entitlement IDs to update. | [optional] |
| operation | Enum [ 'ADD', 'REMOVE', 'REPLACE' ] | Operation to perform on the attributes in the bulk update request. | [optional] |
| replace_scope | Enum [ 'ALL', 'ATTRIBUTE' ] | The choice of update scope. | [optional] |
| values | []RoleMetadataBulkUpdateByIdRequestValuesInner | The 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]}]
)