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,69 @@
---
id: v2025-role-mining-session-response
title: RoleMiningSessionResponse
pagination_label: RoleMiningSessionResponse
sidebar_label: RoleMiningSessionResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMiningSessionResponse', 'V2025RoleMiningSessionResponse']
slug: /tools/sdk/powershell/v2025/models/role-mining-session-response
tags: ['SDK', 'Software Development Kit', 'RoleMiningSessionResponse', 'V2025RoleMiningSessionResponse']
---
# RoleMiningSessionResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Scope** | [**RoleMiningSessionScope**](role-mining-session-scope) | | [optional]
**MinNumIdentitiesInPotentialRole** | **Int32** | Minimum number of identities in a potential role | [optional]
**ScopingMethod** | **String** | The scoping method of the role mining session | [optional]
**PrescribedPruneThreshold** | **Int32** | The computed (or prescribed) prune threshold for this session | [optional]
**PruneThreshold** | **Int32** | The prune threshold to be used for this role mining session | [optional]
**PotentialRoleCount** | **Int32** | The number of potential roles | [optional]
**PotentialRolesReadyCount** | **Int32** | The number of potential roles which have completed processing | [optional]
**Status** | [**RoleMiningSessionStatus**](role-mining-session-status) | | [optional]
**EmailRecipientId** | **String** | The id of the user who will receive an email about the role mining session | [optional]
**CreatedBy** | [**RoleMiningSessionResponseCreatedBy**](role-mining-session-response-created-by) | | [optional]
**IdentityCount** | **Int32** | The number of identities | [optional]
**Saved** | **Boolean** | The session's saved status | [optional] [default to $false]
**Name** | **String** | The session's saved name | [optional]
**DataFilePath** | **String** | The data file path of the role mining session | [optional]
**Id** | **String** | Session Id for this role mining session | [optional]
**CreatedDate** | **System.DateTime** | The date-time when this role mining session was created. | [optional]
**ModifiedDate** | **System.DateTime** | The date-time when this role mining session was completed. | [optional]
**Type** | [**RoleMiningRoleType**](role-mining-role-type) | | [optional]
## Examples
- Prepare the resource
```powershell
$RoleMiningSessionResponse = Initialize-PSSailpoint.V2025RoleMiningSessionResponse -Scope null `
-MinNumIdentitiesInPotentialRole 20 `
-ScopingMethod AUTO_RM `
-PrescribedPruneThreshold 83 `
-PruneThreshold 70 `
-PotentialRoleCount 8 `
-PotentialRolesReadyCount 4 `
-Status null `
-EmailRecipientId null `
-CreatedBy null `
-IdentityCount 39 `
-Saved true `
-Name Saved RM Session - 07/10 `
-DataFilePath null `
-Id 8c190e67-87aa-4ed9-a90b-d9d5344523fb `
-CreatedDate null `
-ModifiedDate null `
-Type null
```
- Convert the resource to JSON
```powershell
$RoleMiningSessionResponse | ConvertTo-JSON
```
[[Back to top]](#)