{ "$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" ] }