Show / Hide Table of Contents

Class Config

Inheritance
System.Object
Config
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Kafka
Assembly: Pulumi.Kafka.dll
Syntax
public static class Config

Properties

View Source

BootstrapServers

A list of kafka brokers

Declaration
public static ImmutableArray<string> BootstrapServers { get; set; }
Property Value
Type Description
System.Collections.Immutable.ImmutableArray<System.String>
View Source

CaCert

CA certificate file to validate the server's certificate.

Declaration
public static string CaCert { get; set; }
Property Value
Type Description
System.String
View Source

CaCertFile

Path to a CA certificate file to validate the server's certificate.

Declaration
public static string CaCertFile { get; set; }
Property Value
Type Description
System.String
View Source

ClientCert

The client certificate.

Declaration
public static string ClientCert { get; set; }
Property Value
Type Description
System.String
View Source

ClientCertFile

Path to a file containing the client certificate.

Declaration
public static string ClientCertFile { get; set; }
Property Value
Type Description
System.String
View Source

ClientKey

The private key that the certificate was issued for.

Declaration
public static string ClientKey { get; set; }
Property Value
Type Description
System.String
View Source

ClientKeyFile

Path to a file containing the private key that the certificate was issued for.

Declaration
public static string ClientKeyFile { get; set; }
Property Value
Type Description
System.String
View Source

SaslMechanism

SASL mechanism, can be plain, scram-sha512, scram-sha256

Declaration
public static string SaslMechanism { get; set; }
Property Value
Type Description
System.String
View Source

SaslPassword

Password for SASL authentication.

Declaration
public static string SaslPassword { get; set; }
Property Value
Type Description
System.String
View Source

SaslUsername

Username for SASL authentication.

Declaration
public static string SaslUsername { get; set; }
Property Value
Type Description
System.String
View Source

SkipTlsVerify

Set this to true only if the target Kafka server is an insecure development instance.

Declaration
public static bool? SkipTlsVerify { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
View Source

Timeout

Timeout in seconds

Declaration
public static int? Timeout { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

TlsEnabled

Enable communication with the Kafka Cluster over TLS.

Declaration
public static bool? TlsEnabled { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.