mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-09 12:27:47 +00:00
starting point for adding python sdk docs
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
---
|
||||
id: v2024-provisioning-criteria-level1
|
||||
title: ProvisioningCriteriaLevel1
|
||||
pagination_label: ProvisioningCriteriaLevel1
|
||||
sidebar_label: ProvisioningCriteriaLevel1
|
||||
sidebar_class_name: pythonsdk
|
||||
keywords: ['python', 'Python', 'sdk', 'ProvisioningCriteriaLevel1', 'V2024ProvisioningCriteriaLevel1']
|
||||
slug: /tools/sdk/python/v2024/models/provisioning-criteria-level1
|
||||
tags: ['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**](provisioning-criteria-operation) | | [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** | [**[]ProvisioningCriteriaLevel2**](provisioning-criteria-level2) | 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
|
||||
|
||||
```python
|
||||
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]](#)
|
||||
|
||||
Reference in New Issue
Block a user