Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/DimensionCriteriaLevel1.md
2025-02-20 12:59:19 -05:00

2.2 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-dimension-criteria-level1 DimensionCriteriaLevel1 DimensionCriteriaLevel1 DimensionCriteriaLevel1 pythonsdk
python
Python
sdk
DimensionCriteriaLevel1
V2024DimensionCriteriaLevel1
/tools/sdk/python/v2024/models/dimension-criteria-level1
SDK
Software Development Kit
DimensionCriteriaLevel1
V2024DimensionCriteriaLevel1

DimensionCriteriaLevel1

Defines STANDARD type Dimension membership

Properties

Name Type Description Notes
operation DimensionCriteriaOperation [optional]
key DimensionCriteriaKey [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 EQUALS, this field is required. Otherwise, specifying it is an error. [optional]
children []DimensionCriteriaLevel2 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]
}

Example

from sailpoint.v2024.models.dimension_criteria_level1 import DimensionCriteriaLevel1

dimension_criteria_level1 = DimensionCriteriaLevel1(
operation='EQUALS',
key=sailpoint.v2024.models.dimension_criteria_key.DimensionCriteriaKey(
                    type = 'IDENTITY', 
                    property = 'attribute.email', ),
string_value='carlee.cert1c9f9b6fd@mailinator.com',
children=[
                    sailpoint.v2024.models.dimension_criteria_level2.DimensionCriteriaLevel2(
                        operation = 'EQUALS', 
                        key = sailpoint.v2024.models.dimension_criteria_key.DimensionCriteriaKey(
                            type = 'IDENTITY', 
                            property = 'attribute.email', ), 
                        string_value = 'carlee.cert1c9f9b6fd@mailinator.com', )
                    ]
)

[Back to top]