Skip to main content

Appliedcontrol

A compensating control that has been applied to a policy violation.

Properties

NameTypeDescriptionNotes
idstrThe system-generated unique identifier of the applied control record.[required]
violationstrThe unique identifier of the policy violation the control was applied to.[required]
controlReferenceresponse[required]
applierReferenceresponse[required]
applied_datedatetimeThe date and time when the control was applied to the violation.[required][readonly]
expirationdatetimeThe date and time when the applied control expires.[required][readonly]
commentsstrOptional comments captured when the control was applied.[optional]
statusAppliedcontrolstatus[optional]
workflow_idstrThe identifier of the workflow triggered when the control was applied.[optional]
}

Example

from sailpoint.sod_violations.models.appliedcontrol import Appliedcontrol

appliedcontrol = Appliedcontrol(
id='',
violation='',
control=sailpoint.sod_violations.models.referenceresponse.Referenceresponse(
id = '3e07886555ed43cfb83c85c58d2016e6',
name = 'John Doe',
type = 'IDENTITY', ),
applier=sailpoint.sod_violations.models.referenceresponse.Referenceresponse(
id = '3e07886555ed43cfb83c85c58d2016e6',
name = 'John Doe',
type = 'IDENTITY', ),
applied_date='2025-01-01T00:00-05:00',
expiration='2025-01-01T02:00-05:00',
comments='Some comments about the applied control',
status='Pending',
workflow_id='82044924-daff-4b0b-9dcb-17e64de4d25b'
)

[Back to top]