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-criteria-key
title: RoleCriteriaKey
pagination_label: RoleCriteriaKey
sidebar_label: RoleCriteriaKey
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'RoleCriteriaKey', 'V2025RoleCriteriaKey']
slug: /tools/sdk/powershell/v2025/models/role-criteria-key
tags: ['SDK', 'Software Development Kit', 'RoleCriteriaKey', 'V2025RoleCriteriaKey']
---
# RoleCriteriaKey
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Type** | [**RoleCriteriaKeyType**](role-criteria-key-type) | | [required]
**Property** | **String** | The name of the attribute or entitlement to which the associated criteria applies. | [required]
**SourceId** | **String** | ID of the Source from which an account attribute or entitlement is drawn. Required if type is ACCOUNT or ENTITLEMENT | [optional]
## Examples
- Prepare the resource
```powershell
$RoleCriteriaKey = Initialize-PSSailpoint.V2025RoleCriteriaKey -Type null `
-Property attribute.email `
-SourceId 2c9180867427f3a301745aec18211519
```
- Convert the resource to JSON
```powershell
$RoleCriteriaKey | ConvertTo-JSON
```
[[Back to top]](#)