mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 20:37:46 +00:00
2.4 KiB
2.4 KiB
id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
| id | title | pagination_label | sidebar_label | sidebar_class_name | keywords | slug | tags | |||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| v2024-role-mining-session-parameters-dto | RoleMiningSessionParametersDto | RoleMiningSessionParametersDto | RoleMiningSessionParametersDto | pythonsdk |
|
/tools/sdk/python/v2024/models/role-mining-session-parameters-dto |
|
RoleMiningSessionParametersDto
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | The ID of the role mining session | [optional] |
| name | str | The session's saved name | [optional] |
| min_num_identities_in_potential_role | int | Minimum number of identities in a potential role | [optional] |
| prune_threshold | int | The prune threshold to be used or null to calculate prescribedPruneThreshold | [optional] |
| saved | bool | The session's saved status | [optional] [default to True] |
| scope | RoleMiningSessionScope | [optional] | |
| type | RoleMiningRoleType | [optional] | |
| state | RoleMiningSessionState | [optional] | |
| scoping_method | RoleMiningSessionScopingMethod | [optional] | |
| } |
Example
from sailpoint.v2024.models.role_mining_session_parameters_dto import RoleMiningSessionParametersDto
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.v2024.models.role_mining_session_scope.Role Mining Session Scope(
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'
)