Show / Hide Table of Contents

Class ProviderArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ProviderArgs
Inherited Members
ResourceArgs.Empty
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 Source

ProviderArgs()

Declaration
public ProviderArgs()

Properties

View Source

BootstrapServers

A list of kafka brokers

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

CaCert

CA certificate file to validate the server's certificate.

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

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>
View Source

ClientCert

The client certificate.

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

ClientCertFile

Path to a file containing the client certificate.

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

ClientKey

The private key that the certificate was issued for.

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

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>
View Source

SaslMechanism

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

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

SaslPassword

Password for SASL authentication.

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

SaslUsername

Username for SASL authentication.

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

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>
View Source

Timeout

Timeout in seconds

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

TlsEnabled

Enable communication with the Kafka Cluster over TLS.

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