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.v2024.models.va_cluster_status_change_event_health_check_result import VAClusterStatusChangeEventHealthCheckResult

va_cluster_status_change_event_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]