Kong · Schema

VirtualClusterNamespaceAdditionalProperties

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
topics array Additional backend topics to expose even if they don't match the namespace prefix. The topics are not affected by the hide/enforce prefix mode. If the client tries to create a topic that matches this
consumer_groups array Consumer group IDs to expose even if they don't start with the namespace prefix.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusternamespaceadditionalproperties-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterNamespaceAdditionalProperties",
  "title": "VirtualClusterNamespaceAdditionalProperties",
  "type": "object",
  "properties": {
    "topics": {
      "description": "Additional backend topics to expose even if they don't match the namespace prefix.\nThe topics are not affected by the hide/enforce prefix mode.\nIf the client tries to create a topic that matches this list, the request is rejected.\n",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualClusterNamespaceTopicSelector"
      }
    },
    "consumer_groups": {
      "description": "Consumer group IDs to expose even if they don't start with the namespace prefix.\n",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualClusterNamespaceIdSelector"
      }
    }
  }
}