NSX-T Data Center REST API

TlsListenerCertificate (type)

{
  "additionalProperties": false,
  "description": "Returns the certificate and thumbprint of a remote TLS listener, if the listener is running and accepting requests. If the certificate cannot be retrieved, the result property describes the problem.",
  "id": "TlsListenerCertificate",
  "module_id": "PolicySiteGM",
  "properties": {
    "certificate": {
      "$ref": "X509Certificate",
      "description": "The certificate of the TLS listener.",
      "readonly": true,
      "title": "The certificate of the TLS listener"
    },
    "result": {
      "description": "Result of get certificate operation.",
      "enum": [
        "SUCCESS",
        "CONNECTION_TIMEOUT",
        "NO_ROUTE_TO_HOST",
        "CONNECTION_REFUSED"
      ],
      "title": "Result of get certificate operation",
      "type": "string"
    },
    "thumbprint": {
      "description": "The SHA-256 thumbprint of the TLS listener.",
      "readonly": true,
      "title": "The SHA-256 thumbprint of the TLS listener",
      "type": "string"
    }
  },
  "title": "Remote TLS Listener Certificate",
  "type": "object"
}