Kong · Schema

CreateManagedCacheAddOnConfig

Configuration for creating a managed cache add-on.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind string Type of add-on configuration.
capacity_config object
View JSON Schema on GitHub

JSON Schema

kong-createmanagedcacheaddonconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateManagedCacheAddOnConfig",
  "title": "CreateManagedCacheAddOnConfig",
  "description": "Configuration for creating a managed cache add-on.",
  "type": "object",
  "properties": {
    "kind": {
      "description": "Type of add-on configuration.",
      "type": "string",
      "const": "managed-cache.v0"
    },
    "capacity_config": {
      "$ref": "#/components/schemas/ManagedCacheCapacityConfig"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "capacity_config"
  ],
  "x-speakeasy-name-override": "managed_cache"
}