Kong · Schema

Network State Metadata

Metadata describing the backing state of the network and why it may be in an erroneous state.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
reported_status string Reported status of the network from backing infrastructure.
reason string Reason why the network may be in an erroneous state, reported from backing infrastructure.
View JSON Schema on GitHub

JSON Schema

kong-networkstatemetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkStateMetadata",
  "title": "Network State Metadata",
  "description": "Metadata describing the backing state of the network and why it may be in an erroneous state.\n",
  "type": "object",
  "properties": {
    "reported_status": {
      "description": "Reported status of the network from backing infrastructure.",
      "type": "string",
      "example": "INVALID"
    },
    "reason": {
      "description": "Reason why the network may be in an erroneous state, reported from backing infrastructure.\n",
      "type": "string",
      "example": "Network could not be deployed due to insufficient cloud provider compute instances.\n"
    }
  },
  "additionalProperties": false,
  "readOnly": true,
  "x-speakeasy-terraform-ignore": true
}