add method and model docs for powershell and python v2025

This commit is contained in:
darrell-thobe-sp
2025-04-01 09:23:12 -04:00
parent c12ffb7efc
commit 5d8f458a33
2414 changed files with 191212 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
---
id: v2025-role-mining-session-draft-role-dto
title: RoleMiningSessionDraftRoleDto
pagination_label: RoleMiningSessionDraftRoleDto
sidebar_label: RoleMiningSessionDraftRoleDto
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleMiningSessionDraftRoleDto', 'V2025RoleMiningSessionDraftRoleDto']
slug: /tools/sdk/python/v2025/models/role-mining-session-draft-role-dto
tags: ['SDK', 'Software Development Kit', 'RoleMiningSessionDraftRoleDto', 'V2025RoleMiningSessionDraftRoleDto']
---
# RoleMiningSessionDraftRoleDto
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **str** | Name of the draft role | [optional]
**description** | **str** | Draft role description | [optional]
**identity_ids** | **[]str** | The list of identities for this role mining session. | [optional]
**entitlement_ids** | **[]str** | The list of entitlement ids for this role mining session. | [optional]
**excluded_entitlements** | **[]str** | The list of excluded entitlement ids. | [optional]
**modified** | **datetime** | Last modified date | [optional]
**type** | [**RoleMiningRoleType**](role-mining-role-type) | | [optional]
**id** | **str** | Id of the potential draft role | [optional]
**created_date** | **datetime** | The date-time when this potential draft role was created. | [optional]
**modified_date** | **datetime** | The date-time when this potential draft role was modified. | [optional]
}
## Example
```python
from sailpoint.v2025.models.role_mining_session_draft_role_dto import RoleMiningSessionDraftRoleDto
role_mining_session_draft_role_dto = RoleMiningSessionDraftRoleDto(
name='Saved RM Session - 07/10',
description='Person who develops software',
identity_ids=[2c918090761a5aac0176215c46a62d58, 2c918090761a5aac01722015c46a62d42],
entitlement_ids=[2c91808a7624751a01762f19d665220d, 2c91808a7624751a01762f19d67c220e],
excluded_entitlements=[07a0b4e2, 13b4e2a0],
modified='2020-09-16T18:49:32.150Z',
type='SPECIALIZED',
id='e0cc5d7d-bf7f-4f81-b2af-8885b09d9923',
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')
)
```
[[Back to top]](#)