Show / Hide Table of Contents

Class MongodbSslConfig

MongoDB SSL configuration information.

Inheritance
object
MongodbSslConfig
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Datastream.v1.Data
Assembly: Google.Apis.Datastream.v1.dll
Syntax
public class MongodbSslConfig : IDirectResponseSchema

Properties

CaCertificate

Optional. Input only. PEM-encoded certificate of the CA that signed the source database server's certificate.

Declaration
[JsonProperty("caCertificate")]
public virtual string CaCertificate { get; set; }
Property Value
Type Description
string

CaCertificateSet

Output only. Indicates whether the ca_certificate field is set.

Declaration
[JsonProperty("caCertificateSet")]
public virtual bool? CaCertificateSet { get; set; }
Property Value
Type Description
bool?

ClientCertificate

Optional. Input only. PEM-encoded certificate that will be used by the replica to authenticate against the source database server. If this field is used then the 'client_key' and the 'ca_certificate' fields are mandatory.

Declaration
[JsonProperty("clientCertificate")]
public virtual string ClientCertificate { get; set; }
Property Value
Type Description
string

ClientCertificateSet

Output only. Indicates whether the client_certificate field is set.

Declaration
[JsonProperty("clientCertificateSet")]
public virtual bool? ClientCertificateSet { get; set; }
Property Value
Type Description
bool?

ClientKey

Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.

Declaration
[JsonProperty("clientKey")]
public virtual string ClientKey { get; set; }
Property Value
Type Description
string

ClientKeySet

Output only. Indicates whether the client_key field is set.

Declaration
[JsonProperty("clientKeySet")]
public virtual bool? ClientKeySet { get; set; }
Property Value
Type Description
bool?

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
string

SecretManagerStoredClientKey

Optional. Input only. A reference to a Secret Manager resource name storing the PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory. Mutually exclusive with the client_key field.

Declaration
[JsonProperty("secretManagerStoredClientKey")]
public virtual string SecretManagerStoredClientKey { get; set; }
Property Value
Type Description
string

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX