Kong · Schema

EventGatewayACLResourceName

An Event Gateway resource name to match against in an ACL rule.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
match string Currently supported are exact matches and globs. All `*` characters are interpreted as globs, i.e. they match zero or more of any character.
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayaclresourcename-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayACLResourceName",
  "title": "EventGatewayACLResourceName",
  "description": "An Event Gateway resource name to match against in an ACL rule.",
  "type": "object",
  "properties": {
    "match": {
      "description": "Currently supported are exact matches and globs.\nAll `*` characters are interpreted as globs, i.e. they match zero or more of any character.\n",
      "type": "string",
      "format": "glob"
    }
  },
  "required": [
    "match"
  ]
}