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: v2024-role-mining-potential-role-source-usage
title: RoleMiningPotentialRoleSourceUsage
pagination_label: RoleMiningPotentialRoleSourceUsage
sidebar_label: RoleMiningPotentialRoleSourceUsage
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleMiningPotentialRoleSourceUsage', 'V2024RoleMiningPotentialRoleSourceUsage']
slug: /tools/sdk/python/v2024/models/role-mining-potential-role-source-usage
tags: ['SDK', 'Software Development Kit', 'RoleMiningPotentialRoleSourceUsage', 'V2024RoleMiningPotentialRoleSourceUsage']
---
# RoleMiningPotentialRoleSourceUsage
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **str** | The identity ID | [optional]
**display_name** | **str** | Display name for the identity | [optional]
**email** | **str** | Email address for the identity | [optional]
**usage_count** | **int** | The number of days there has been usage of the source by the identity. | [optional]
}
## Example
```python
from sailpoint.v2024.models.role_mining_potential_role_source_usage import RoleMiningPotentialRoleSourceUsage
role_mining_potential_role_source_usage = RoleMiningPotentialRoleSourceUsage(
id='2c918089762475180176267f894b54dc',
display_name='Kirk Koepp',
email='kirk.koepp@testmail.identitynow.com',
usage_count=25
)
```
[[Back to top]](#)