Skip to main content

VaclusterstatuschangeeventHealthCheckResult

The results of the most recent 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_health_check_result import VaclusterstatuschangeeventHealthCheckResult

vaclusterstatuschangeevent_health_check_result = VaclusterstatuschangeeventHealthCheckResult(
message='Test Connection failed with exception. Error message - java.lang Exception',
result_type='SOURCE_STATE_ERROR_CLUSTER',
status='Succeeded'
)

[Back to top]