Skip to main content

RoleInsightsResponse

Properties

NameTypeDescriptionNotes
idstrRequest Id for a role insight generation request[optional]
created_datedatetimeThe date-time role insights request was created.[optional]
last_generateddatetimeThe date-time role insights request was completed.[optional]
number_of_updatesintTotal number of updates for this request. Starts with 0 and will have correct number when request is COMPLETED.[optional]
role_ids[]strThe role IDs that are in this request.[optional]
statusEnum [ 'CREATED', 'IN PROGRESS', 'COMPLETED', 'FAILED' ]Request status[optional]
}

Example

from sailpoint.v2024.models.role_insights_response import RoleInsightsResponse

role_insights_response = RoleInsightsResponse(
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
created_date='2020-09-16T18:49:32.150Z',
last_generated='2020-09-16T18:50:12.150Z',
number_of_updates=0,
role_ids=[
''
],
status='CREATED'
)

[Back to top]