Kong · Schema

Private DNS Resolver Config Item

Object that contains mappings from proxied internal domains to remote DNS server IP address for a Private DNS Resolver.

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

JSON Schema

kong-privatednsresolverconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PrivateDnsResolverConfig",
  "title": "Private DNS Resolver Config Item",
  "description": "Object that contains mappings from proxied internal domains to remote DNS server IP address for a Private DNS Resolver.\n",
  "type": "object",
  "example": {
    "global.api.konghq.com": {
      "remote_dns_server_ip_addresses": [
        "10.0.0.2"
      ]
    },
    "us.api.konghq.dev": {
      "remote_dns_server_ip_addresses": [
        "10.0.0.8"
      ]
    }
  },
  "additionalProperties": {
    "$ref": "#/components/schemas/PrivateDnsResolverConfigObject"
  }
}