src/Microsoft.Azure.WebJobs.Extensions.Kafka/Config/BrokerAuthenticationMode.cs (15 lines of code) (raw):

// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the MIT License. See License.txt in the project root for license information. using System; using Confluent.Kafka; namespace Microsoft.Azure.WebJobs.Extensions.Kafka { /// <summary> /// Defines the broker authentication modes /// </summary> public enum BrokerAuthenticationMode { // Force that 0 starts like the one from librdkafka NotSet = -1, Gssapi, Plain, ScramSha256, ScramSha512, OAuthBearer } }