MachineClassificationCriteriaLevel1
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| operation | MachineClassificationCriteriaOperation | [optional] | |
| case_sensitive | bool | Indicates whether case matters when evaluating the criteria | [optional] [default to False] |
| data_type | str | The data type of the attribute being evaluated | [optional] |
| attribute | str | The attribute to evaluate in the classification criteria | [optional] |
| value | str | The value to compare against the attribute in the classification criteria | [optional] |
| children | []MachineClassificationCriteriaLevel2 | An array of child classification criteria objects | [optional] |
| } |
Example
from sailpoint.v2025.models.machine_classification_criteria_level1 import MachineClassificationCriteriaLevel1
machine_classification_criteria_level1 = MachineClassificationCriteriaLevel1(
operation='EQUALS',
case_sensitive=False,
data_type='',
attribute='distinguishedName',
value='OU=Service Accounts',
children=[
sailpoint.v2025.models.machine_classification_criteria_level2.MachineClassificationCriteriaLevel2(
operation = 'EQUALS',
case_sensitive = False,
data_type = '',
attribute = 'employeeType',
value = 'SERVICE', )
]
)