Skip to main content

ProvisioningCriteriaLevel1

Defines matching criteria for an account to be provisioned with a specific access profile.

Properties

NameTypeDescriptionNotes
operationProvisioningCriteriaOperation[optional]
attributestrName of the account attribute to be tested. If operation is one of EQUALS, NOT_EQUALS, CONTAINS, or HAS, this field is required. Otherwise, specifying it results in an error.[optional]
valuestrString value to test the account attribute w/r/t the specified operation. If the operation is one of EQUALS, NOT_EQUALS, or CONTAINS, this field is required. Otherwise, specifying it results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type.[optional]
children[]ProvisioningCriteriaLevel2Array of child criteria. This field is 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.[optional]
}

Example

from sailpoint.v2025.models.provisioning_criteria_level1 import ProvisioningCriteriaLevel1

provisioning_criteria_level1 = ProvisioningCriteriaLevel1(
operation='EQUALS',
attribute='email',
value='[email protected]',
children=[
sailpoint.v2025.models.provisioning_criteria_level2.ProvisioningCriteriaLevel2(
operation = 'EQUALS',
attribute = 'email',
value = '[email protected]', )
]
)

[Back to top]