starting point for adding python sdk docs

This commit is contained in:
darrell-thobe-sp
2025-02-20 12:59:19 -05:00
parent 3b9e39ca19
commit c18583ede4
2726 changed files with 370294 additions and 5 deletions

View File

@@ -0,0 +1,37 @@
---
id: beta-role-mining-session-scope
title: RoleMiningSessionScope
pagination_label: RoleMiningSessionScope
sidebar_label: RoleMiningSessionScope
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'RoleMiningSessionScope', 'BetaRoleMiningSessionScope']
slug: /tools/sdk/python/beta/models/role-mining-session-scope
tags: ['SDK', 'Software Development Kit', 'RoleMiningSessionScope', 'BetaRoleMiningSessionScope']
---
# RoleMiningSessionScope
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**identity_ids** | **[]str** | The list of identities for this role mining session. | [optional]
**criteria** | **str** | The \"search\" criteria that produces the list of identities for this role mining session. | [optional]
**attribute_filter_criteria** | **[]object** | The filter criteria for this role mining session. | [optional]
}
## Example
```python
from sailpoint.beta.models.role_mining_session_scope import RoleMiningSessionScope
role_mining_session_scope = RoleMiningSessionScope(
identity_ids=[2c918090761a5aac0176215c46a62d58, 2c918090761a5aac01722015c46a62d42],
criteria='source.name:DataScienceDataset',
attribute_filter_criteria={displayName={untranslated=Location: Miami}, ariaLabel={untranslated=Location: Miami}, data={displayName={translateKey=IDN.IDENTITY_ATTRIBUTES.LOCATION}, name=location, operator=EQUALS, values=[Miami]}}
)
```
[[Back to top]](#)