Kong · Schema

GCP VPC Peering Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
peer_project_id string GCP Project ID of the peer account to create attachment to.
peer_vpc_name string GCP VPC Name of the peer account to create attachment to.
View JSON Schema on GitHub

JSON Schema

kong-gcpvpcpeeringattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/GCPVPCPeeringAttachmentConfig",
  "title": "GCP VPC Peering Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "gcp-vpc-peering-attachment"
      ],
      "title": "GCP VPC Peering Attachment Type"
    },
    "peer_project_id": {
      "description": "GCP Project ID of the peer account to create attachment to.",
      "type": "string",
      "title": "GCP Project ID"
    },
    "peer_vpc_name": {
      "description": "GCP VPC Name of the peer account to create attachment to.",
      "type": "string",
      "title": "GCP VPC Name"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "peer_project_id",
    "peer_vpc_name"
  ]
}