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 SourceBootstrapServers
A list of kafka brokers
Declaration
public static ImmutableArray<string> BootstrapServers { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Immutable.ImmutableArray<System.String> |
CaCert
CA certificate file to validate the server's certificate.
Declaration
public static string CaCert { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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 |
ClientCert
The client certificate.
Declaration
public static string ClientCert { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ClientCertFile
Path to a file containing the client certificate.
Declaration
public static string ClientCertFile { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
ClientKey
The private key that the certificate was issued for.
Declaration
public static string ClientKey { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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 |
SaslMechanism
SASL mechanism, can be plain, scram-sha512, scram-sha256
Declaration
public static string SaslMechanism { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SaslPassword
Password for SASL authentication.
Declaration
public static string SaslPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
SaslUsername
Username for SASL authentication.
Declaration
public static string SaslUsername { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
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> |
Timeout
Timeout in seconds
Declaration
public static int? Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
TlsEnabled
Enable communication with the Kafka Cluster over TLS.
Declaration
public static bool? TlsEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |