Kong · Schema

VirtualClusterAuthenticationClientCertificate

Client certificate (mTLS) authentication scheme for the virtual cluster. **Requires a minimum runtime version of `1.1`**.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationclientcertificate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationClientCertificate",
  "title": "VirtualClusterAuthenticationClientCertificate",
  "description": "Client certificate (mTLS) authentication scheme for the virtual cluster.\n\n**Requires a minimum runtime version of `1.1`**.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "client_certificate"
    }
  },
  "example": {
    "type": "client_certificate"
  },
  "additionalProperties": false,
  "required": [
    "type"
  ],
  "x-min-runtime-version": "1.1"
}