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,43 @@
---
id: v2025-role-mining-potential-role-provision-request
title: RoleMiningPotentialRoleProvisionRequest
pagination_label: RoleMiningPotentialRoleProvisionRequest
sidebar_label: RoleMiningPotentialRoleProvisionRequest
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMiningPotentialRoleProvisionRequest', 'V2025RoleMiningPotentialRoleProvisionRequest']
slug: /tools/sdk/powershell/v2025/models/role-mining-potential-role-provision-request
tags: ['SDK', 'Software Development Kit', 'RoleMiningPotentialRoleProvisionRequest', 'V2025RoleMiningPotentialRoleProvisionRequest']
---
# RoleMiningPotentialRoleProvisionRequest
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**RoleName** | **String** | Name of the new role being created | [optional]
**RoleDescription** | **String** | Short description of the new role being created | [optional]
**OwnerId** | **String** | ID of the identity that will own this role | [optional]
**IncludeIdentities** | **Boolean** | When true, create access requests for the identities associated with the potential role | [optional] [default to $false]
**DirectlyAssignedEntitlements** | **Boolean** | When true, assign entitlements directly to the role; otherwise, create access profiles containing the entitlements | [optional] [default to $false]
## Examples
- Prepare the resource
```powershell
$RoleMiningPotentialRoleProvisionRequest = Initialize-PSSailpoint.V2025RoleMiningPotentialRoleProvisionRequest -RoleName Finance - Accounting `
-RoleDescription General access for accounting department `
-OwnerId 2b568c65bc3c4c57a43bd97e3a8e41 `
-IncludeIdentities true `
-DirectlyAssignedEntitlements false
```
- Convert the resource to JSON
```powershell
$RoleMiningPotentialRoleProvisionRequest | ConvertTo-JSON
```
[[Back to top]](#)