Kong · Schema

Network Provider Metadata

Metadata describing attributes returned by cloud-provider for the network.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
vpc_id string
subnet_ids array
View JSON Schema on GitHub

JSON Schema

kong-networkprovidermetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/NetworkProviderMetadata",
  "title": "Network Provider Metadata",
  "description": "Metadata describing attributes returned by cloud-provider for the network.",
  "type": "object",
  "properties": {
    "vpc_id": {
      "type": "string",
      "title": "VPC ID"
    },
    "subnet_ids": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "title": "Subnet IDs"
    }
  },
  "additionalProperties": false,
  "readOnly": true,
  "x-speakeasy-param-suppress-computed-diff": true
}