Skip to main content

Rolemetadatabulkupdatebyidrequest

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

Properties

NameTypeDescriptionNotes
roles[]strRoles' Id to be updated[required]
operationEnum [ 'ADD', 'REMOVE', 'REPLACE' ]The operation to be performed[required]
replace_scopeEnum [ 'ALL', 'ATTRIBUTE' ]The choice of update scope.[optional]
values[]RolemetadatabulkupdatebyidrequestValuesInnerThe metadata to be updated, including attribute key and value.[required]
}

Example

from sailpoint.roles.models.rolemetadatabulkupdatebyidrequest import Rolemetadatabulkupdatebyidrequest

rolemetadatabulkupdatebyidrequest = Rolemetadatabulkupdatebyidrequest(
roles=["b1db89554cfa431cb8b9921ea38d9367"],
operation='REPLACE',
replace_scope='ALL',
values=[{"attribute":"iscFederalClassifications","values":["topSecret"]}]
)

[Back to top]