Skip to main content

TestSourceConnectionMultihost200Response

Properties

NameTypeDescriptionNotes
successboolSource's test connection status.[optional]
messagestrSource's test connection message.[optional]
timingintSource's test connection timing.[optional]
result_typeEnum [ 'SOURCE_STATE_ERROR_CLUSTER', 'SOURCE_STATE_ERROR_SOURCE', 'SOURCE_STATE_ERROR_VA', 'SOURCE_STATE_FAILURE_CLUSTER', 'SOURCE_STATE_FAILURE_SOURCE', 'SOURCE_STATE_HEALTHY', 'SOURCE_STATE_UNCHECKED_CLUSTER', 'SOURCE_STATE_UNCHECKED_CLUSTER_NO_SOURCES', 'SOURCE_STATE_UNCHECKED_SOURCE', 'SOURCE_STATE_UNCHECKED_SOURCE_NO_ACCOUNTS', 'SOURCE_STATE_ERROR_ACCOUNT_FILE_IMPORT' ]Source's human-readable result type.[optional]
test_connection_detailsstrSource's human-readable test connection details.[optional]
}

Example

from sailpoint.beta.models.test_source_connection_multihost200_response import TestSourceConnectionMultihost200Response

test_source_connection_multihost200_response = TestSourceConnectionMultihost200Response(
success=True,
message='Tes.',
timing=56,
result_type=SOURCE_STATE_HEALTHY,
test_connection_details=''
)

[Back to top]