Skip to main content

Privilegecriteriadto

Properties

NameTypeDescriptionNotes
idstrThe Id of the criteria.[optional]
source_idstrThe Id of the source that the criteria is applied to.[optional]
typeEnum [ 'CUSTOM', 'CONNECTOR', 'SINGLE_LEVEL' ]The type of criteria.[optional]
operatorEnum [ 'AND', 'OR' ]The logical operator to apply between groups.[optional]
groups[]PrivilegecriteriadtoGroupsInner[optional]
privilege_levelEnum [ 'HIGH', 'MEDIUM', 'LOW' ]The privilege level assigned by this criteria.[optional]
}

Example

from sailpoint.privilege_criteria.models.privilegecriteriadto import Privilegecriteriadto

privilegecriteriadto = Privilegecriteriadto(
id='2c9180867817ac4d017817c491119a20',
source_id='c42c45d8d7c04d2da64d215cd8c32f21',
type='CUSTOM',
operator='AND',
groups=[
sailpoint.privilege_criteria.models.privilegecriteriadto_groups_inner.privilegecriteriadto_groups_inner(
operator = 'AND',
criteria_items = [
sailpoint.privilege_criteria.models.privilegecriteriadto_groups_inner_criteria_items_inner.privilegecriteriadto_groups_inner_criteriaItems_inner(
target_type = 'group',
operator = 'IN',
property = 'displayName',
values = ["admin","superuser"],
ignore_case = True, )
], )
],
privilege_level='HIGH'
)

[Back to top]