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,40 @@
---
id: v2024-dimension-criteria-level3
title: DimensionCriteriaLevel3
pagination_label: DimensionCriteriaLevel3
sidebar_label: DimensionCriteriaLevel3
sidebar_class_name: pythonsdk
keywords: ['python', 'Python', 'sdk', 'DimensionCriteriaLevel3', 'V2024DimensionCriteriaLevel3']
slug: /tools/sdk/python/v2024/models/dimension-criteria-level3
tags: ['SDK', 'Software Development Kit', 'DimensionCriteriaLevel3', 'V2024DimensionCriteriaLevel3']
---
# DimensionCriteriaLevel3
Defines STANDARD type Dimension membership
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**operation** | [**DimensionCriteriaOperation**](dimension-criteria-operation) | | [optional]
**key** | [**DimensionCriteriaKey**](dimension-criteria-key) | | [optional]
**string_value** | **str** | 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]
}
## Example
```python
from sailpoint.v2024.models.dimension_criteria_level3 import DimensionCriteriaLevel3
dimension_criteria_level3 = DimensionCriteriaLevel3(
operation='EQUALS',
key=sailpoint.v2024.models.dimension_criteria_key.DimensionCriteriaKey(
type = 'IDENTITY',
property = 'attribute.email', ),
string_value='carlee.cert1c9f9b6fd@mailinator.com'
)
```
[[Back to top]](#)