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
| Name | Type | Description | Notes |
|---|---|---|---|
| roles | []str | Roles' Id to be updated | [required] |
| operation | Enum [ 'ADD', 'REMOVE', 'REPLACE' ] | The operation to be performed | [required] |
| replace_scope | Enum [ 'ALL', 'ATTRIBUTE' ] | The choice of update scope. | [optional] |
| values | []RolemetadatabulkupdatebyidrequestValuesInner | The 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"]}]
)