Skip to main content

VaclusterstatuschangeeventPreviousHealthCheckResult

The results of the last health check.

Properties

NameTypeDescriptionNotes
messagestrDetailed message of the result of the health check.[required]
result_typestrThe type of the health check result.[required]
statusEnum [ 'Succeeded', 'Failed' ]The status of the health check.[required]
}

Example

from sailpoint.triggers.models.vaclusterstatuschangeevent_previous_health_check_result import VaclusterstatuschangeeventPreviousHealthCheckResult

vaclusterstatuschangeevent_previous_health_check_result = VaclusterstatuschangeeventPreviousHealthCheckResult(
message='Test Connection failed with exception. Error message - java.lang Exception',
result_type='SOURCE_STATE_ERROR_CLUSTER',
status='Failed'
)

[Back to top]