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,39 @@
---
id: v2025-role-mining-session-scope
title: RoleMiningSessionScope
pagination_label: RoleMiningSessionScope
sidebar_label: RoleMiningSessionScope
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleMiningSessionScope', 'V2025RoleMiningSessionScope']
slug: /tools/sdk/powershell/v2025/models/role-mining-session-scope
tags: ['SDK', 'Software Development Kit', 'RoleMiningSessionScope', 'V2025RoleMiningSessionScope']
---
# RoleMiningSessionScope
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**IdentityIds** | **[]String** | The list of identities for this role mining session. | [optional]
**Criteria** | **String** | The ""search"" criteria that produces the list of identities for this role mining session. | [optional]
**AttributeFilterCriteria** | [**[]SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | The filter criteria for this role mining session. | [optional]
## Examples
- Prepare the resource
```powershell
$RoleMiningSessionScope = Initialize-PSSailpoint.V2025RoleMiningSessionScope -IdentityIds [2c918090761a5aac0176215c46a62d58, 2c918090761a5aac01722015c46a62d42] `
-Criteria source.name:DataScienceDataset `
-AttributeFilterCriteria {displayName={untranslated=Location: Miami}, ariaLabel={untranslated=Location: Miami}, data={displayName={translateKey=IDN.IDENTITY_ATTRIBUTES.LOCATION}, name=location, operator=EQUALS, values=[Miami]}}
```
- Convert the resource to JSON
```powershell
$RoleMiningSessionScope | ConvertTo-JSON
```
[[Back to top]](#)