Skip to main content

CreatePrivilegeCriteriaRequestGroupsInnerCriteriaItemsInner

Properties

NameTypeDescriptionNotes
target_typeEnum [ 'group' ]The target type of the criteria item.[optional]
operatorEnum [ '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.create_privilege_criteria_request_groups_inner_criteria_items_inner import CreatePrivilegeCriteriaRequestGroupsInnerCriteriaItemsInner

create_privilege_criteria_request_groups_inner_criteria_items_inner = CreatePrivilegeCriteriaRequestGroupsInnerCriteriaItemsInner(
target_type='group',
operator='displayName',
values=["admin","superuser"],
ignore_case=True
)

[Back to top]