public enum SslConfig.Types.SslMode
Reference documentation and code samples for the AlloyDB v1beta API enum SslConfig.Types.SslMode.
SSL mode options.
Namespace
Google.Cloud.AlloyDb.V1BetaAssembly
Google.Cloud.AlloyDb.V1Beta.dll
Fields |
|
---|---|
Name | Description |
Allow |
SSL connections are optional. CA verification not enforced. |
AllowUnencryptedAndEncrypted |
SSL connections are optional. CA verification not enforced. |
EncryptedOnly |
SSL connections are required. CA verification not enforced. |
Require |
SSL connections are required. CA verification not enforced. Clients may use locally self-signed certificates (default psql client behavior). |
Unspecified |
SSL mode not specified. Defaults to ENCRYPTED_ONLY. |
VerifyCa |
SSL connections are required. CA verification enforced. Clients must have certificates signed by a Cluster CA, e.g. via GenerateClientCertificate. |