CorrelatedGovernanceEvent
Properties
Name | Type | Description | Notes |
---|---|---|---|
name | str | The name of the governance event, such as the certification name or access request ID. | [optional] |
dt | str | The date that the certification or access request was completed. | [optional] |
type | Enum [ 'certification', 'accessRequest' ] | The type of governance event. | [optional] |
governance_id | str | The ID of the instance that caused the event - either the certification ID or access request ID. | [optional] |
owners | []CertifierResponse | The owners of the governance event (the certifiers or approvers) | [optional] |
reviewers | []CertifierResponse | The owners of the governance event (the certifiers or approvers), this field should be preferred over owners | [optional] |
decision_maker | CertifierResponse | [optional] | |
} |
Example
from sailpoint.beta.models.correlated_governance_event import CorrelatedGovernanceEvent
correlated_governance_event = CorrelatedGovernanceEvent(
name='Manager Certification for Jon Snow',
dt='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.beta.models.certifier_response.CertifierResponse(
id = '8a80828f643d484f01643e14202e206f',
display_name = 'John Snow', )
)