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

2.1 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-provisioning-criteria-level2 ProvisioningCriteriaLevel2 ProvisioningCriteriaLevel2 ProvisioningCriteriaLevel2 pythonsdk
python
Python
sdk
ProvisioningCriteriaLevel2
V2024ProvisioningCriteriaLevel2
/tools/sdk/python/v2024/models/provisioning-criteria-level2
SDK
Software Development Kit
ProvisioningCriteriaLevel2
V2024ProvisioningCriteriaLevel2

ProvisioningCriteriaLevel2

Defines matching criteria for an Account to be provisioned with a specific Access Profile

Properties

Name Type Description Notes
operation ProvisioningCriteriaOperation [optional]
attribute str Name 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]
value str String 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]
children []ProvisioningCriteriaLevel3 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. [optional]
}

Example

from sailpoint.v2024.models.provisioning_criteria_level2 import ProvisioningCriteriaLevel2

provisioning_criteria_level2 = ProvisioningCriteriaLevel2(
operation='EQUALS',
attribute='email',
value='carlee.cert1c9f9b6fd@mailinator.com',
children=[
                    sailpoint.v2024.models.provisioning_criteria_level3.ProvisioningCriteriaLevel3(
                        operation = 'EQUALS', 
                        attribute = 'email', 
                        value = 'carlee.cert1c9f9b6fd@mailinator.com', )
                    ]
)

[Back to top]