Kong · Schema

CreateNetworkRequest

Request schema for creating a network.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
name object
cloud_gateway_provider_account_id object
region object
availability_zones object
cidr_block object
state object
View JSON Schema on GitHub

JSON Schema

kong-createnetworkrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateNetworkRequest",
  "title": "CreateNetworkRequest",
  "x-speakeasy-entity": "CloudGatewayNetwork",
  "description": "Request schema for creating a network.",
  "type": "object",
  "properties": {
    "name": {
      "$ref": "#/components/schemas/NetworkName"
    },
    "cloud_gateway_provider_account_id": {
      "$ref": "#/components/schemas/ProviderAccountId"
    },
    "region": {
      "$ref": "#/components/schemas/ProviderRegionId"
    },
    "availability_zones": {
      "$ref": "#/components/schemas/NetworkAvailabilityZones"
    },
    "cidr_block": {
      "$ref": "#/components/schemas/NetworkCIDRBlock"
    },
    "state": {
      "$ref": "#/components/schemas/NetworkCreateState"
    }
  },
  "additionalProperties": false,
  "required": [
    "name",
    "cloud_gateway_provider_account_id",
    "region",
    "availability_zones",
    "cidr_block"
  ]
}