Kong · Schema

BackendClusterAuthenticationSaslPlain

SASL/PLAIN authentication scheme for the backend cluster.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

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

JSON Schema

kong-backendclusterauthenticationsaslplain-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackendClusterAuthenticationSaslPlain",
  "title": "BackendClusterAuthenticationSaslPlain",
  "description": "SASL/PLAIN authentication scheme for the backend cluster.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "sasl_plain"
    },
    "username": {
      "$ref": "#/components/schemas/GatewaySecretReferenceOrLiteral"
    },
    "password": {
      "$ref": "#/components/schemas/GatewaySecret"
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "username",
    "password"
  ]
}