Skip to main content

Roleinsightsinsight

Properties

NameTypeDescriptionNotes
typestrThe number of identities in this role with the entitlement.[optional]
identities_with_accessintThe number of identities in this role with the entitlement.[optional]
identities_impactedintThe number of identities in this role that do not have the specified entitlement.[optional]
total_number_of_identitiesintThe total number of identities.[optional]
impacted_identity_namesstr[optional]
}

Example

from sailpoint.role_insights.models.roleinsightsinsight import Roleinsightsinsight

roleinsightsinsight = Roleinsightsinsight(
type='ADD',
identities_with_access=850,
identities_impacted=150,
total_number_of_identities=1000,
impacted_identity_names=''
)

[Back to top]