Skip to main content

Conflictingitem

A single access item that contributes to a separation-of-duties conflict.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the conflicting access item.[required]
namestrThe display name of the conflicting access item.[optional]
typeEnum [ 'ENTITLEMENT', 'ACCESS_PROFILE', 'ROLE' ]The type of access object represented by the conflicting item.[required]
source_refConflictingitemsourceref[optional]
descriptionstrOptional human-readable description of the conflicting item.[optional]
}

Example

from sailpoint.sod_violations.models.conflictingitem import Conflictingitem

conflictingitem = Conflictingitem(
id='3e07886555ed43cfb83c85c58d2016e6',
name='Administrator',
type='ENTITLEMENT',
source_ref=sailpoint.sod_violations.models.conflictingitemsourceref.Conflictingitemsourceref(
id = '2c9180825a6c1adc015a71c9db2101a1',
name = 'Active Directory',
type = 'DIRECT_CONNECT',
description = 'Corporate Active Directory source.', ),
description='Grants administrative access to the payroll application.'
)

[Back to top]