Kong · Schema

CreateConfigurationDataPlaneGroup

Object that describes where to deploy a data-plane group, along with how many instances.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
provider object
region object
cloud_gateway_network_id object
autoscale object
environment object
View JSON Schema on GitHub

JSON Schema

kong-createconfigurationdataplanegroup-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateConfigurationDataPlaneGroup",
  "title": "CreateConfigurationDataPlaneGroup",
  "description": "Object that describes where to deploy a data-plane group, along with how many instances.",
  "type": "object",
  "properties": {
    "provider": {
      "$ref": "#/components/schemas/ProviderName"
    },
    "region": {
      "$ref": "#/components/schemas/ProviderRegionId"
    },
    "cloud_gateway_network_id": {
      "$ref": "#/components/schemas/NetworkId"
    },
    "autoscale": {
      "$ref": "#/components/schemas/ConfigurationDataPlaneGroupAutoscale"
    },
    "environment": {
      "$ref": "#/components/schemas/ConfigurationDataPlaneGroupEnvironment"
    }
  },
  "additionalProperties": false,
  "required": [
    "provider",
    "region"
  ]
}