Skip to main content

DimensionCriteriaLevel3

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 one of EQUALS, this field is required. Otherwise, specifying it is an error.[optional]
}

Example

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='[email protected]'
)

[Back to top]