Skip to main content

RoleMiningPotentialRoleSummary

Properties

NameTypeDescriptionNotes
idstrId of the potential role[optional]
namestrName of the potential role[optional]
potential_role_refRoleMiningPotentialRoleRef[optional]
identity_countintThe number of identities in a potential role.[optional]
entitlement_countintThe number of entitlements in a potential role.[optional]
identity_group_statusstrThe status for this identity group which can be "REQUESTED" or "OBTAINED"[optional]
provision_stateRoleMiningPotentialRoleProvisionState[optional]
role_idstrID of the provisioned role in IIQ or IDN. Null if this potential role has not been provisioned.[optional]
densityintThe density metric (0-100) of this potential role. Higher density values indicate higher similarity amongst the identities.[optional]
freshnessintThe freshness metric (0-100) of this potential role. Higher freshness values indicate this potential role is more distinctive compared to existing roles.[optional]
qualityintThe quality metric (0-100) of this potential role. Higher quality values indicate this potential role has high density and freshness.[optional]
typeRoleMiningRoleType[optional]
created_byRoleMiningPotentialRoleSummaryCreatedBy[optional]
created_datedatetimeThe date-time when this potential role was created.[optional]
savedboolThe potential role's saved status[optional] [default to False]
descriptionstrDescription of the potential role[optional]
sessionRoleMiningSessionParametersDto[optional]
}

Example

from sailpoint.beta.models.role_mining_potential_role_summary import RoleMiningPotentialRoleSummary

role_mining_potential_role_summary = RoleMiningPotentialRoleSummary(
id='e0cc5d7d-bf7f-4f81-b2af-8885b09d9923',
name='Potential Role - e0cc5d',
potential_role_ref=sailpoint.beta.models.role_mining_potential_role_ref.RoleMiningPotentialRoleRef(
id = 'e0cc5d7d-bf7f-4f81-b2af-8885b09d9923',
name = 'Potential Role - e0cc5d', ),
identity_count=25,
entitlement_count=15,
identity_group_status='OBTAINED',
provision_state='POTENTIAL',
role_id='2a4be6fbcf3c4e66b95a0c15ffd591',
density=90,
freshness=70,
quality=80,
type='SPECIALIZED',
created_by=,
created_date=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
saved=True,
description='',
session=sailpoint.beta.models.role_mining_session_parameters_dto.RoleMiningSessionParametersDto(
id = '9f36f5e5-1e81-4eca-b087-548959d91c71',
name = 'Saved RM Session - 07/10',
min_num_identities_in_potential_role = 20,
prune_threshold = 5,
saved = True,
scope = sailpoint.beta.models.role_mining_session_scope.RoleMiningSessionScope(
identity_ids = [2c918090761a5aac0176215c46a62d58, 2c918090761a5aac01722015c46a62d42],
criteria = 'source.name:DataScienceDataset',
attribute_filter_criteria = {displayName={untranslated=Location: Miami}, ariaLabel={untranslated=Location: Miami}, data={displayName={translateKey=IDN.IDENTITY_ATTRIBUTES.LOCATION}, name=location, operator=EQUALS, values=[Miami]}}, ),
type = 'SPECIALIZED',
state = 'CREATED',
scoping_method = 'MANUAL', )
)

[Back to top]