Class ProviderArgs
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 sealed class ProviderArgs : ResourceArgs
Constructors
View SourceProviderArgs()
Declaration
public ProviderArgs()
Properties
View SourceBootstrapServers
A list of kafka brokers
Declaration
public InputList<string> BootstrapServers { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
CaCert
CA certificate file to validate the server's certificate.
Declaration
public Input<string> CaCert { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
CaCertFile
Path to a CA certificate file to validate the server's certificate.
Declaration
public Input<string> CaCertFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ClientCert
The client certificate.
Declaration
public Input<string> ClientCert { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ClientCertFile
Path to a file containing the client certificate.
Declaration
public Input<string> ClientCertFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ClientKey
The private key that the certificate was issued for.
Declaration
public Input<string> ClientKey { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
ClientKeyFile
Path to a file containing the private key that the certificate was issued for.
Declaration
public Input<string> ClientKeyFile { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SaslMechanism
SASL mechanism, can be plain, scram-sha512, scram-sha256
Declaration
public Input<string> SaslMechanism { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SaslPassword
Password for SASL authentication.
Declaration
public Input<string> SaslPassword { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SaslUsername
Username for SASL authentication.
Declaration
public Input<string> SaslUsername { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
SkipTlsVerify
Set this to true only if the target Kafka server is an insecure development instance.
Declaration
public Input<bool> SkipTlsVerify { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Timeout
Timeout in seconds
Declaration
public Input<int> Timeout { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
TlsEnabled
Enable communication with the Kafka Cluster over TLS.
Declaration
public Input<bool> TlsEnabled { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |