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,41 @@
---
id: v2025-role-mining-potential-role-export-response
title: RoleMiningPotentialRoleExportResponse
pagination_label: RoleMiningPotentialRoleExportResponse
sidebar_label: RoleMiningPotentialRoleExportResponse
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMiningPotentialRoleExportResponse', 'V2025RoleMiningPotentialRoleExportResponse']
slug: /tools/sdk/powershell/v2025/models/role-mining-potential-role-export-response
tags: ['SDK', 'Software Development Kit', 'RoleMiningPotentialRoleExportResponse', 'V2025RoleMiningPotentialRoleExportResponse']
---
# RoleMiningPotentialRoleExportResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**MinEntitlementPopularity** | **Int32** | The minimum popularity among identities in the role which an entitlement must have to be included in the report | [optional]
**IncludeCommonAccess** | **Boolean** | If false, do not include entitlements that are highly popular among the entire orginization | [optional]
**ExportId** | **String** | ID used to reference this export | [optional]
**Status** | [**RoleMiningPotentialRoleExportState**](role-mining-potential-role-export-state) | | [optional]
## Examples
- Prepare the resource
```powershell
$RoleMiningPotentialRoleExportResponse = Initialize-PSSailpoint.V2025RoleMiningPotentialRoleExportResponse -MinEntitlementPopularity 0 `
-IncludeCommonAccess true `
-ExportId 0c6cdb76-1227-4aaf-af21-192dbdfbfa04 `
-Status null
```
- Convert the resource to JSON
```powershell
$RoleMiningPotentialRoleExportResponse | ConvertTo-JSON
```
[[Back to top]](#)