Skip to main content

RoleInsight

Properties

NameTypeDescriptionNotes
idstrInsight id[optional]
number_of_updatesintTotal number of updates for this role[optional]
created_datedatetimeThe date-time insights were last created for this role.[optional]
modified_datedatetimeThe date-time insights were last modified for this role.[optional]
roleRoleInsightsRole[optional]
insightRoleInsightsInsight[optional]
}

Example

from sailpoint.beta.models.role_insight import RoleInsight

role_insight = RoleInsight(
id='1467e61e-f284-439c-ba2d-c6cc11cf0941',
number_of_updates=5,
created_date=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
modified_date='2020-05-19T13:49:37.385Z',
role=sailpoint.beta.models.role_insights_role.RoleInsightsRole(
name = 'Software Engineer',
id = '1467e61e-f284-439c-ba2d-c6cc11cf0941',
description = 'Person who develops software',
owner_name = 'Bob',
owner_id = '1467e61e-f284-439c-ba2d-c6cc11cf0941', ),
insight=sailpoint.beta.models.role_insights_insight.RoleInsightsInsight(
type = 'ADD',
identities_with_access = 850,
identities_impacted = 150,
total_number_of_identities = 1000,
impacted_identity_names = '', )
)

[Back to top]