Kong · Schema

VirtualClusterAuthenticationSaslPlainSensitiveDataAware

SASL/PLAIN authentication scheme for the virtual cluster.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
mediation string The mediation type for SASL/PLAIN authentication.
principals array List of principals to be able to authenticate with, used with `terminate` mediation.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationsaslplainsensitivedataaware-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationSaslPlainSensitiveDataAware",
  "title": "VirtualClusterAuthenticationSaslPlainSensitiveDataAware",
  "description": "SASL/PLAIN authentication scheme for the virtual cluster.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "sasl_plain"
    },
    "mediation": {
      "description": "The mediation type for SASL/PLAIN authentication.",
      "type": "string",
      "enum": [
        "passthrough",
        "terminate"
      ],
      "x-speakeasy-unknown-values": "allow"
    },
    "principals": {
      "description": "List of principals to be able to authenticate with, used with `terminate` mediation.",
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/VirtualClusterAuthenticationPrincipalSensitiveDataAware"
      }
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "mediation"
  ]
}