Skip to main content

RoleInsightsSummary

Properties

NameTypeDescriptionNotes
number_of_updatesintTotal number of roles with updates[optional]
last_generateddatetimeThe date-time role insights were last found.[optional]
entitlements_included_in_rolesintThe number of entitlements included in roles (vs free radicals).[optional]
total_number_of_entitlementsintThe total number of entitlements.[optional]
identities_with_access_via_rolesintThe number of identities in roles vs. identities with just entitlements and not in roles.[optional]
total_number_of_identitiesintThe total number of identities.[optional]
}

Example

from sailpoint.v2024.models.role_insights_summary import RoleInsightsSummary

role_insights_summary = RoleInsightsSummary(
number_of_updates=56,
last_generated='2020-05-19T13:49:37.385Z',
entitlements_included_in_roles=45,
total_number_of_entitlements=250,
identities_with_access_via_roles=550,
total_number_of_identities=980
)

[Back to top]