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.createprivilegecriteriarequest_groups_inner_criteria_items_inner import CreateprivilegecriteriarequestGroupsInnerCriteriaItemsInner

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

[Back to top]