Skip to main content

DimensionCriteriaLevel1

Defines STANDARD type Dimension membership

Properties

NameTypeDescriptionNotes
operationDimensionCriteriaOperation[optional]
keyDimensionCriteriaKey[optional]
string_valuestrString 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[]DimensionCriteriaLevel2Array 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='[email protected]',
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 = '[email protected]', )
]
)

[Back to top]