Kong · Schema

Add-On State

The current state of the add-on. Possible values: - `initializing` - The add-on is in the process of being initialized/updated. - `ready` - The add-on is fully operational. - `terminating` - The add-on is in the process of being deleted.

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

JSON Schema

kong-addonstate-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AddOnState",
  "title": "Add-On State",
  "description": "The current state of the add-on. Possible values:\n- `initializing` - The add-on is in the process of being initialized/updated.\n- `ready` - The add-on is fully operational.\n- `terminating` - The add-on is in the process of being deleted.\n",
  "type": "string",
  "enum": [
    "initializing",
    "ready",
    "terminating"
  ],
  "readOnly": true,
  "x-speakeasy-unknown-values": "allow"
}