Skip to main content

MachineClassificationCriteriaLevel3

Properties

NameTypeDescriptionNotes
operationMachineClassificationCriteriaOperation[optional]
case_sensitiveboolIndicates whether or not case matters when evaluating the criteria[optional] [default to False]
data_typestrThe data type of the attribute being evaluated[optional]
attributestrThe attribute to evaluate in the classification criteria[optional]
valuestrThe value to compare against the attribute in the classification criteria[optional]
children[]strAn array of child classification criteria objects[optional]
}

Example

from sailpoint.v2024.models.machine_classification_criteria_level3 import MachineClassificationCriteriaLevel3

machine_classification_criteria_level3 = MachineClassificationCriteriaLevel3(
operation='EQUALS',
case_sensitive=False,
data_type='This is the first level of classification criteria',
attribute='sAMAccountName',
value='SVC',
children=[
''
]
)

[Back to top]