Skip to main content

Correlatedgovernanceevent

Properties

NameTypeDescriptionNotes
namestrThe name of the governance event, such as the certification name or access request ID.[optional]
date_timestrThe date that the certification or access request was completed.[optional]
typeEnum [ 'certification', 'accessRequest' ]The type of governance event.[optional]
governance_idstrThe ID of the instance that caused the event - either the certification ID or access request ID.[optional]
owners[]CertifierresponseThe owners of the governance event (the certifiers or approvers)[optional]
reviewers[]CertifierresponseThe owners of the governance event (the certifiers or approvers), this field should be preferred over owners[optional]
decision_makerCertifierresponse[optional]
}

Example

from sailpoint.identity_history.models.correlatedgovernanceevent import Correlatedgovernanceevent

correlatedgovernanceevent = Correlatedgovernanceevent(
name='Manager Certification for Jon Snow',
date_time='2019-03-08T22:37:33.901Z',
type='certification',
governance_id='2c91808a77ff216301782327a50f09bf',
owners=[{"id":"8a80828f643d484f01643e14202e206f","displayName":"John Snow"}],
reviewers=[{"id":"8a80828f643d484f01643e14202e206f","displayName":"John Snow"}],
decision_maker=sailpoint.identity_history.models.certifier_response.Certifier Response(
id = '8a80828f643d484f01643e14202e206f',
display_name = 'John Snow', )
)

[Back to top]