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.roles.models.rolemetadatabulkupdatebyfilterrequest import Rolemetadatabulkupdatebyfilterrequest

rolemetadatabulkupdatebyfilterrequest = Rolemetadatabulkupdatebyfilterrequest(
filters=' requestable eq false',
operation='REPLACE',
replace_scope='ALL',
values=[{"attribute":"iscFederalClassifications","values":["topSecret"]}]
)

[Back to top]