starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,39 @@
---
id: beta-role-mining-identity
title: RoleMiningIdentity
pagination_label: RoleMiningIdentity
sidebar_label: RoleMiningIdentity
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleMiningIdentity', 'BetaRoleMiningIdentity']
slug: /tools/sdk/python/beta/models/role-mining-identity
tags: ['SDK', 'Software Development Kit', 'RoleMiningIdentity', 'BetaRoleMiningIdentity']
---
# RoleMiningIdentity
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | Id of the identity | [optional]
**name** | **str** | Name of the identity | [optional]
**attributes** | **map[string]str** | | [optional]
}
## Example
```python
from sailpoint.beta.models.role_mining_identity import RoleMiningIdentity
role_mining_identity = RoleMiningIdentity(
id='',
name='',
attributes={
'key' : ''
}
)
```
[[Back to top]](#)