Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/ProvisioningCriteriaLevel1.md
2025-04-01 21:14:08 +00:00

2.2 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-level1 ProvisioningCriteriaLevel1 ProvisioningCriteriaLevel1 ProvisioningCriteriaLevel1 pythonsdk
python
Python
sdk
ProvisioningCriteriaLevel1
V2024ProvisioningCriteriaLevel1
/tools/sdk/python/v2024/models/provisioning-criteria-level1
SDK
Software Development Kit
ProvisioningCriteriaLevel1
V2024ProvisioningCriteriaLevel1

ProvisioningCriteriaLevel1

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 results in 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 results in an error. If the attribute is not string-typed, the API will convert it to the appropriate type. [optional]
children []ProvisioningCriteriaLevel2 Array 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.v2024.models.provisioning_criteria_level1 import ProvisioningCriteriaLevel1

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

[Back to top]