Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

SqlServerSslConfig

import type { SqlServerSslConfig } from "https://googleapis.deno.dev/v1/datastream:v1.ts";

SQL Server SSL configuration information.

interface SqlServerSslConfig {
basicEncryption?: BasicEncryption;
encryptionAndServerValidation?: EncryptionAndServerValidation;
encryptionNotEnforced?: EncryptionNotEnforced;
}

§Properties

§
basicEncryption?: BasicEncryption
[src]

If set, Datastream will enforce encryption without authenticating server identity. Server certificates will be trusted by default.

§
encryptionAndServerValidation?: EncryptionAndServerValidation
[src]

If set, Datastream will enforce encryption and authenticate server identity.

§
encryptionNotEnforced?: EncryptionNotEnforced
[src]

If set, Datastream will not enforce encryption. If the DB server mandates encryption, then connection will be encrypted but server identity will not be authenticated.