Skip to main content

ViolationContextPolicy

The types of objects supported for SOD violations

Properties

NameTypeDescriptionNotes
typeEnum [ 'ENTITLEMENT' ]The type of object that is referenced[optional]
idstrSOD policy ID.[optional]
namestr[optional]
}

Example

from sailpoint.v3.models.violation_context_policy import ViolationContextPolicy

violation_context_policy = ViolationContextPolicy(
type=ENTITLEMENT,
id='0f11f2a4-7c94-4bf3-a2bd-742580fe3bde',
name='A very cool policy name'
)

[Back to top]