Kong · Schema

EventGatewayACLOperation

An Event Gateway operation to match against in an ACL rule.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name string
View JSON Schema on GitHub

JSON Schema

kong-eventgatewayacloperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/EventGatewayACLOperation",
  "title": "EventGatewayACLOperation",
  "description": "An Event Gateway operation to match against in an ACL rule.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "enum": [
        "all",
        "alter",
        "alter_configs",
        "create",
        "delete",
        "describe",
        "describe_configs",
        "idempotent_write",
        "read",
        "write"
      ],
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "required": [
    "name"
  ]
}