Skip to main content

RoleMiningSessionResponse

Properties

NameTypeDescriptionNotes
scopeRoleMiningSessionScope[optional]
min_num_identities_in_potential_roleintMinimum number of identities in a potential role[optional]
scoping_methodstrThe scoping method of the role mining session[optional]
prescribed_prune_thresholdintThe computed (or prescribed) prune threshold for this session[optional]
prune_thresholdintThe prune threshold to be used for this role mining session[optional]
potential_role_countintThe number of potential roles[optional]
potential_roles_ready_countintThe number of potential roles which have completed processing[optional]
statusRoleMiningSessionStatus[optional]
email_recipient_idstrThe id of the user who will receive an email about the role mining session[optional]
created_byRoleMiningSessionResponseCreatedBy[optional]
identity_countintThe number of identities[optional]
savedboolThe session's saved status[optional] [default to False]
namestrThe session's saved name[optional]
data_file_pathstrThe data file path of the role mining session[optional]
idstrSession Id for this role mining session[optional]
created_datedatetimeThe date-time when this role mining session was created.[optional]
modified_datedatetimeThe date-time when this role mining session was completed.[optional]
typeRoleMiningRoleType[optional]
}

Example

from sailpoint.v2024.models.role_mining_session_response import RoleMiningSessionResponse

role_mining_session_response = RoleMiningSessionResponse(
scope=sailpoint.v2024.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]}}, ),
min_num_identities_in_potential_role=20,
scoping_method='AUTO_RM',
prescribed_prune_threshold=83,
prune_threshold=70,
potential_role_count=8,
potential_roles_ready_count=4,
status=sailpoint.v2024.models.role_mining_session_status.RoleMiningSessionStatus(
state = 'CREATED', ),
email_recipient_id='',
created_by=,
identity_count=39,
saved=True,
name='Saved RM Session - 07/10',
data_file_path='',
id='8c190e67-87aa-4ed9-a90b-d9d5344523fb',
created_date=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
modified_date=datetime.datetime.strptime('2013-10-20 19:20:30.00', '%Y-%m-%d %H:%M:%S.%f'),
type='SPECIALIZED'
)

[Back to top]