Skip to main content

RoleMetadataBulkUpdateByFilterRequest

This API initialize a a Bulk update by filter request of Role metadata. The maximum meta data values that one single role assigned can not exceed 25. Custom metadata need suit licensed.

Properties

NameTypeDescriptionNotes
filtersstrFiltering is supported for the following fields and operators: id : eq, in name : eq, sw created : gt, lt, ge, le modified : gt, lt, ge, le owner.id : eq, in requestable : eq[required]
operationEnum [ 'ADD', 'REMOVE', 'REPLACE' ]The operation to be performed[required]
replace_scopeEnum [ 'ALL', 'ATTRIBUTE' ]The choice of update scope.[optional]
values[]RoleMetadataBulkUpdateByFilterRequestValuesInnerThe metadata to be updated, including attribute key and value.[required]
}

Example

from sailpoint.v2024.models.role_metadata_bulk_update_by_filter_request import RoleMetadataBulkUpdateByFilterRequest

role_metadata_bulk_update_by_filter_request = RoleMetadataBulkUpdateByFilterRequest(
filters=' requestable eq false',
operation='REPLACE',
replace_scope='ALL',
values=[{attribute=iscFederalClassifications, values=[topSecret]}]
)

[Back to top]