mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-08 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: v2024-role-mining-potential-role-provision-request
|
||||
title: RoleMiningPotentialRoleProvisionRequest
|
||||
pagination_label: RoleMiningPotentialRoleProvisionRequest
|
||||
sidebar_label: RoleMiningPotentialRoleProvisionRequest
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'RoleMiningPotentialRoleProvisionRequest', 'V2024RoleMiningPotentialRoleProvisionRequest']
|
||||
slug: /tools/sdk/python/v2024/models/role-mining-potential-role-provision-request
|
||||
tags: ['SDK', 'Software Development Kit', 'RoleMiningPotentialRoleProvisionRequest', 'V2024RoleMiningPotentialRoleProvisionRequest']
|
||||
---
|
||||
|
||||
# RoleMiningPotentialRoleProvisionRequest
|
||||
|
||||
|
||||
## Properties
|
||||
|
||||
Name | Type | Description | Notes
|
||||
------------ | ------------- | ------------- | -------------
|
||||
**role_name** | **str** | Name of the new role being created | [optional]
|
||||
**role_description** | **str** | Short description of the new role being created | [optional]
|
||||
**owner_id** | **str** | ID of the identity that will own this role | [optional]
|
||||
**include_identities** | **bool** | When true, create access requests for the identities associated with the potential role | [optional] [default to False]
|
||||
**directly_assigned_entitlements** | **bool** | When true, assign entitlements directly to the role; otherwise, create access profiles containing the entitlements | [optional] [default to False]
|
||||
}
|
||||
|
||||
## Example
|
||||
|
||||
```python
|
||||
from sailpoint.v2024.models.role_mining_potential_role_provision_request import RoleMiningPotentialRoleProvisionRequest
|
||||
|
||||
role_mining_potential_role_provision_request = RoleMiningPotentialRoleProvisionRequest(
|
||||
role_name='Finance - Accounting',
|
||||
role_description='General access for accounting department',
|
||||
owner_id='2b568c65bc3c4c57a43bd97e3a8e41',
|
||||
include_identities=True,
|
||||
directly_assigned_entitlements=False
|
||||
)
|
||||
|
||||
```
|
||||
[[Back to top]](#)
|
||||
|
||||
Reference in New Issue
Block a user