ProbeResult
Results of a connection test to a specific endpoint.
Properties
URLs supplied by Certificate Authorities to retrieve signing certificates, when those certificates are not included in the chain. These URLs are the locations for the ‘caIssuers’ access method in the ‘Authority Info Access’ extension (as described in RFC 5280 Section 4.2.2.1) of the certificates and gives the caller an indication where additional CA certificates may be retrieved from, to complete the chain to the trust anchor.
If vCD can establish a connection on the specified port.
The SSL certificate chain presented by the server if a secure connection was made.
A code describing the result of establishing a connection. Will be one of the following:
- SUCCESS: The connection was successful.
- ERROR_CANNOT_RESOLVE_IP: The hostname could not be resolved to an IP address.
- ERROR_CANNOT_CONNECT: Unable to establish connection.
The IP address the host was resolved to, if not going through a proxy.
Localized message describing the connection result stating success or an error message with a brief summary.
If an SSL Handshake succeeded (secure requests only).
A code describing the result of the SSL handshake. Will be one of the following:
- SUCCESS: The SSL handshake was successful.
- ERROR_SSL_ERROR: Unable to establish SSL connection.
- ERROR_UNTRUSTED_CERTIFICATE: Certificate not trusted.
- ERROR_CANNOT_VERIFY_HOSTNAME: Hostname verification failed.
- null: No SSL handshake was attempted.
JSON Example
{
"additionalCAIssuers": [
"string"
],
"canConnect": false,
"certificateChain": "string",
"connectionResult": "string",
"resolvedIp": "string",
"result": "string",
"sslHandshake": false,
"sslResult": "string"
}
Availability
Property Of
TestResult