Kong · Schema

VirtualClusterAuthenticationSaslScram

SASL/SCRAM authentication scheme for the virtual cluster.

API GatewayAI GatewayAI ConnectivityAgent GatewayEvent GatewayMCP RegistryService MeshLLMKafkaKonnectOpen Source

Properties

Name Type Description
type string
algorithm string The algorithm used for SASL/SCRAM authentication.
View JSON Schema on GitHub

JSON Schema

kong-virtualclusterauthenticationsaslscram-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/VirtualClusterAuthenticationSaslScram",
  "title": "VirtualClusterAuthenticationSaslScram",
  "description": "SASL/SCRAM authentication scheme for the virtual cluster.",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "const": "sasl_scram"
    },
    "algorithm": {
      "description": "The algorithm used for SASL/SCRAM authentication.",
      "type": "string",
      "enum": [
        "sha256",
        "sha512"
      ],
      "x-speakeasy-unknown-values": "allow"
    }
  },
  "additionalProperties": false,
  "required": [
    "type",
    "algorithm"
  ]
}