Kong · Schema
Azure VNET Peering Attachment Config
API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source
Properties
| Name | Type | Description |
|---|---|---|
| kind | object | |
| tenant_id | string | Tenant ID for the Azure VNET Peering attachment. |
| subscription_id | string | Subscription ID for the Azure VNET Peering attachment. |
| resource_group_name | string | Resource Group Name for the Azure VNET Peering attachment. |
| vnet_name | string | VNET Name for the Azure VNET Peering attachment. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AzureVNETPeeringAttachmentConfig",
"title": "Azure VNET Peering Attachment Config",
"type": "object",
"properties": {
"kind": {
"enum": [
"azure-vnet-peering-attachment"
],
"title": "Azure VNET Peering Attachment Type"
},
"tenant_id": {
"description": "Tenant ID for the Azure VNET Peering attachment.",
"type": "string",
"title": "Tenant ID"
},
"subscription_id": {
"description": "Subscription ID for the Azure VNET Peering attachment.",
"type": "string",
"title": "Subscription ID"
},
"resource_group_name": {
"description": "Resource Group Name for the Azure VNET Peering attachment.",
"type": "string",
"title": "Resource Group Name"
},
"vnet_name": {
"description": "VNET Name for the Azure VNET Peering attachment.",
"type": "string",
"title": "VNET Name"
}
},
"additionalProperties": false,
"required": [
"kind",
"tenant_id",
"subscription_id",
"resource_group_name",
"vnet_name"
]
}