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.v2024.models.role_metadata_bulk_update_by_id_request import RoleMetadataBulkUpdateByIdRequest

role_metadata_bulk_update_by_id_request = RoleMetadataBulkUpdateByIdRequest(
roles=[b1db89554cfa431cb8b9921ea38d9367],
operation='REPLACE',
replace_scope='ALL',
values=[{attribute=iscFederalClassifications, values=[topSecret]}]
)

[Back to top]