Kong · Schema

VirtualClusterAuthenticationPrincipal

A principal for authentication containing username and password.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
username object
password object
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationprincipal-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationPrincipal",
  "title": "VirtualClusterAuthenticationPrincipal",
  "description": "A principal for authentication containing username and password.",
  "type": "object",
  "properties": {
    "username": {
      "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral"
    },
    "password": {
      "$ref": "#/components/schemas/GatewaySecret"
    }
  },
  "required": [
    "username",
    "password"
  ]
}