Properties
| Name | Type | Description |
|---|---|---|
| sha256 | string | The SHA-256 hash of the TLS certificate presented by the host found at tls_sockaddr. If absent, regular certificate verification (trusted roots, valid timestamp, etc) will be used to validate the cert |
| tls_sockaddr | string | A network address of the form "host:port" that the WARP client will use to detect the presence of a TLS host. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/teams-devices_tls_config_request",
"title": "teams-devices_tls_config_request",
"properties": {
"sha256": {
"description": "The SHA-256 hash of the TLS certificate presented by the host found at tls_sockaddr. If absent, regular certificate verification (trusted roots, valid timestamp, etc) will be used to validate the certificate.",
"example": "b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b878ae4944c",
"type": "string"
},
"tls_sockaddr": {
"description": "A network address of the form \"host:port\" that the WARP client will use to detect the presence of a TLS host.",
"example": "foobar:1234",
"type": "string"
}
},
"required": [
"tls_sockaddr"
],
"type": "object"
}