Test
Tests a connection, including SSL handshake and hostname verification.
{
"host": "string",
"port": 0,
"secure": false,
"timeout": 0,
"hostnameVerificationAlgorithm": "string",
"additionalCAIssuers": [
"string"
],
"proxyConnection": {
"proxyHost": "string",
"proxyPort": 0,
"proxyUsername": "string",
"proxyPassword": "string",
"proxySecure": false
},
"preConfiguredProxy": "string"
}
The host (or IP address) to connect to.
The port to use when connecting.
If the connection should use https.
Maximum time (in seconds) any step in the test should wait for a response.
Endpoint/Hostname verification algorithm to be used during SSL/TLS/DTLS handshake. Their values are as follows:
When this field is not set, the default value null indicates no hostname verification will be performed.A list of URLs being authorized by the user to retrieve additional CA certificates from, if necessary, to complete the certificate chain to its trust anchor.
Upon retrieving the certificate chain presented during the handshake, if signing CA certificates were not included, but a location is specified for the 'caIssuers' access method of the 'Authority Info Access' extension (as described in RFC 5280 Section 4.2.2.1) of those certificates and that location is one of these supplied URLs, then additional certificates will be retrieved from those URLs in accordance with the protocol laid out in the RFC.
Any failure to retrieve this certificate will NOT fail the test connection request, nor will the error associated with this failure be returned.
In the unlikely event that the CA Issuers URL specifies `https` instead of `http`, the original certificate, that included that URL, will be temporarily used to trust the server during ssl handshake
The URN of a ProxyConfiguration to use for the test. Only one of proxyConnection or preConfiguredProxy can be specified. If neither is specified then no proxy is used to test the connection.
{
"targetProbe": {
"result": "string",
"resolvedIp": "string",
"canConnect": false,
"sslHandshake": false,
"connectionResult": "string",
"sslResult": "string",
"certificateChain": "string",
"additionalCAIssuers": [
"string"
]
},
"proxyProbe": {
"result": "string",
"resolvedIp": "string",
"canConnect": false,
"sslHandshake": false,
"connectionResult": "string",
"sslResult": "string",
"certificateChain": "string",
"additionalCAIssuers": [
"string"
]
}
}