Skip to main content

PrivilegecriteriadtoGroupsInnerCriteriaItemsInner

Properties

NameTypeDescriptionNotes
target_typeEnum [ 'group' ]The target type for the criteria item.[optional]
operatorEnum [ 'IN', 'EQUALS', 'NOT_EQUALS', 'CONTAINS', 'DOES_NOT_CONTAIN', 'STARTS_WITH', 'ENDS_WITH' ]The operator to apply to the property and values.[optional]
var_propertyEnum [ 'displayName', 'description', 'value' ][optional]
values[]strThe values to evaluate the property against.[optional]
ignore_caseboolWhether to ignore case when evaluating the property against the values.[optional] [default to False]
}

Example

from sailpoint.privilege_criteria.models.privilegecriteriadto_groups_inner_criteria_items_inner import PrivilegecriteriadtoGroupsInnerCriteriaItemsInner

privilegecriteriadto_groups_inner_criteria_items_inner = PrivilegecriteriadtoGroupsInnerCriteriaItemsInner(
target_type='group',
operator='IN',
var_property='displayName',
values=["admin","superuser"],
ignore_case=True
)

[Back to top]