Kong · Schema

CreateConfigurationRequest

Request schema for creating a configuration.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
control_plane_id object
control_plane_geo object
version object
dataplane_groups array List of data-plane groups that describe where to deploy instances, along with how many instances.
kind object
api_access object
View JSON Schema on GitHub

JSON Schema

kong-createconfigurationrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConfigurationRequest",
  "title": "CreateConfigurationRequest",
  "description": "Request schema for creating a configuration.\n",
  "type": "object",
  "properties": {
    "control_plane_id": {
      "$ref": "#/components/schemas/ControlPlaneId"
    },
    "control_plane_geo": {
      "$ref": "#/components/schemas/ControlPlaneGeo"
    },
    "version": {
      "$ref": "#/components/schemas/GatewayVersion"
    },
    "dataplane_groups": {
      "description": "List of data-plane groups that describe where to deploy instances, along with how many instances.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/CreateConfigurationDataPlaneGroup"
      },
      "format": "set"
    },
    "kind": {
      "$ref": "#/components/schemas/ConfigurationKind"
    },
    "api_access": {
      "$ref": "#/components/schemas/ApiAccess"
    }
  },
  "additionalProperties": false,
  "required": [
    "control_plane_id",
    "control_plane_geo",
    "dataplane_groups"
  ]
}