Kong · Schema

VirtualClusterTopicAliasConflict

How to handle conflicts where an alias shadows a physical topic. * warn - activate the alias but log a warning and set the conflict metric to 1. * ignore - activate the alias silently.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
View JSON Schema on GitHub

JSON Schema

kong-virtualclustertopicaliasconflict-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterTopicAliasConflict",
  "title": "VirtualClusterTopicAliasConflict",
  "description": "How to handle conflicts where an alias shadows a physical topic.\n* warn - activate the alias but log a warning and set the conflict metric to 1.\n* ignore - activate the alias silently.\n",
  "type": "string",
  "default": "warn",
  "enum": [
    "warn",
    "ignore"
  ],
  "x-enum-varnames": [
    "VirtualClusterTopicAliasConflictWarn",
    "VirtualClusterTopicAliasConflictIgnore"
  ],
  "x-speakeasy-unknown-values": "allow"
}