Skip to main content

ProvisioningCriteriaLevel3

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 is 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 is an error. If the Attribute is not String-typed, it will be converted to the appropriate type.[optional]
childrenstrArray 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.[optional]
}

Example

from sailpoint.beta.models.provisioning_criteria_level3 import ProvisioningCriteriaLevel3

provisioning_criteria_level3 = ProvisioningCriteriaLevel3(
operation='EQUALS',
attribute='email',
value='[email protected]',
children=''
)

[Back to top]