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-dimension-criteria-level2
title: DimensionCriteriaLevel2
pagination_label: DimensionCriteriaLevel2
sidebar_label: DimensionCriteriaLevel2
sidebar_class_name: powershellsdk
keywords: ['powershell', 'PowerShell', 'sdk', 'DimensionCriteriaLevel2', 'V2025DimensionCriteriaLevel2']
slug: /tools/sdk/powershell/v2025/models/dimension-criteria-level2
tags: ['SDK', 'Software Development Kit', 'DimensionCriteriaLevel2', 'V2025DimensionCriteriaLevel2']
---
# DimensionCriteriaLevel2
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**Operation** | [**DimensionCriteriaOperation**](dimension-criteria-operation) | | [optional]
**Key** | [**DimensionCriteriaKey**](dimension-criteria-key) | | [optional]
**StringValue** | **String** | String value to test the Identity attribute specified in the key w/r/t the specified operation. If this criteria is a leaf node, that is, if the operation is one of EQUALS, this field is required. Otherwise, specifying it is an error. | [optional]
**Children** | [**[]DimensionCriteriaLevel3**](dimension-criteria-level3) | Array of child criteria. Required if the operation is AND or OR, otherwise it must be left null. A maximum of three levels of criteria are supported, including leaf nodes. Additionally, AND nodes can only be children or OR nodes and vice-versa. | [optional]
## Examples
- Prepare the resource
```powershell
$DimensionCriteriaLevel2 = Initialize-PSSailpoint.V2025DimensionCriteriaLevel2 -Operation null `
-Key null `
-StringValue carlee.cert1c9f9b6fd@mailinator.com `
-Children null
```
- Convert the resource to JSON
```powershell
$DimensionCriteriaLevel2 | ConvertTo-JSON
```
[[Back to top]](#)