Class SslConfig
SSL configuration information.
Implements
Inherited Members
Namespace: Google.Apis.DatabaseMigrationService.v1beta1.Data
Assembly: Google.Apis.DatabaseMigrationService.v1beta1.dll
Syntax
public class SslConfig : IDirectResponseSchema
Properties
CaCertificate
Required. Input only. The x509 PEM-encoded certificate of the CA that signed the source database server's certificate. The replica will use this certificate to verify it's connecting to the right host.
Declaration
[JsonProperty("caCertificate")]
public virtual string CaCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |
ClientCertificate
Input only. The x509 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' field is mandatory.
Declaration
[JsonProperty("clientCertificate")]
public virtual string ClientCertificate { get; set; }
Property Value
Type | Description |
---|---|
string |
ClientKey
Input only. The unencrypted PKCS#1 or PKCS#8 PEM-encoded private key associated with the Client Certificate. If this field is used then the 'client_certificate' field is mandatory.
Declaration
[JsonProperty("clientKey")]
public virtual string ClientKey { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Output only. The ssl config type according to 'client_key', 'client_certificate' and 'ca_certificate'.
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |