Skip to main content

RoleBulkUpdateResponse

Properties

NameTypeDescriptionNotes
idstrID of the task which is executing the bulk update. This also used in to the bulk-update/** API to track status.[optional]
typestrType of the bulk update object.[optional]
statusEnum [ 'CREATED', 'PRE_PROCESS', 'PRE_PROCESS_COMPLETED', 'POST_PROCESS', 'COMPLETED', 'CHUNK_PENDING', 'CHUNK_PROCESSING' ]The status of the bulk update request, could also checked by getBulkUpdateStatus API[optional]
createddatetimeTime when the bulk update request was created[optional]
}

Example

from sailpoint.v2024.models.role_bulk_update_response import RoleBulkUpdateResponse

role_bulk_update_response = RoleBulkUpdateResponse(
id='2c9180867817ac4d017817c491119a20',
type='Role',
status='CREATED',
created='2020-10-08T18:33:52.029Z'
)

[Back to top]