Kong · Schema

Azure Virtual Hub Peering Attachment Config

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
kind object
tenant_id string Tenant ID of the Azure Virtual Hub resource.
subscription_id string Subscription ID of the Azure Virtual Hub resource.
resource_group_name string Resource Group Name of the Azure Virtual Hub resource.
vhub_name string Name of the Azure Virtual Hub resource.
View JSON Schema on GitHub

JSON Schema

kong-azurevhubpeeringattachmentconfig-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/AzureVHubPeeringAttachmentConfig",
  "title": "Azure Virtual Hub Peering Attachment Config",
  "type": "object",
  "properties": {
    "kind": {
      "enum": [
        "azure-vhub-peering-attachment"
      ],
      "title": "Azure Virtual Hub Peering Attachment Type"
    },
    "tenant_id": {
      "description": "Tenant ID of the Azure Virtual Hub resource.",
      "type": "string",
      "title": "Tenant ID"
    },
    "subscription_id": {
      "description": "Subscription ID of the Azure Virtual Hub resource.",
      "type": "string",
      "title": "Subscription ID"
    },
    "resource_group_name": {
      "description": "Resource Group Name of the Azure Virtual Hub resource.",
      "type": "string",
      "title": "Resource Group Name"
    },
    "vhub_name": {
      "description": "Name of the Azure Virtual Hub resource.",
      "type": "string",
      "title": "Virtual Hub Name"
    }
  },
  "additionalProperties": false,
  "required": [
    "kind",
    "tenant_id",
    "subscription_id",
    "resource_group_name",
    "vhub_name"
  ]
}