Show / Hide Table of Contents

Class SecretBackendConnectionCassandraArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SecretBackendConnectionCassandraArgs
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.Vault.Database.Inputs
Assembly: Pulumi.Vault.dll
Syntax
public sealed class SecretBackendConnectionCassandraArgs : ResourceArgs

Constructors

View Source

SecretBackendConnectionCassandraArgs()

Declaration
public SecretBackendConnectionCassandraArgs()

Properties

View Source

ConnectTimeout

The number of seconds to use as a connection timeout.

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

Hosts

The hosts to connect to.

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

InsecureTls

Whether to skip verification of the server certificate when using TLS.

Declaration
public Input<bool> InsecureTls { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Password

The password to be used in the connection.

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

PemBundle

Concatenated PEM blocks configuring the certificate chain.

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

PemJson

A JSON structure configuring the certificate chain.

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

Port

The default port to connect to if no port is specified as part of the host.

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

ProtocolVersion

The CQL protocol version to use.

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

Tls

Whether to use TLS when connecting to Cassandra.

Declaration
public Input<bool> Tls { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Username

The username to be used in the connection.

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