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

GoldengateMicrosoftSqlserverConnectionProperties

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

The properties of GoldengateMicrosoftSqlserverConnection.

interface GoldengateMicrosoftSqlserverConnectionProperties {
additionalAttributes?: NameValuePair[];
database?: string;
host?: string;
password?: string;
passwordSecretVersion?: string;
port?: number;
securityProtocol?: "MICROSOFT_SQLSERVER_SECURITY_PROTOCOL_UNSPECIFIED" | "PLAIN" | "TLS";
serverCertificateValidationRequired?: boolean;
sslCaFile?: string;
technologyType?: string;
username?: string;
}

§Properties

§
additionalAttributes?: NameValuePair[]
[src]

Optional. An array of name-value pair attribute entries. Used as additional parameters in connection string.

§
database?: string
[src]

Optional. The name of the database.

§
host?: string
[src]

Optional. The name or address of a host.

§
password?: string
[src]

Optional. Input only. The password Oracle Goldengate uses for Microsoft SQL Server connection in plain text.

§
passwordSecretVersion?: string
[src]

Optional. Input only. The resource name of a secret version in Secret Manager which contains the password Oracle Goldengate uses for Microsoft SQL Server connection. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
port?: number
[src]

Optional. The port of an endpoint usually specified for a connection.

§
securityProtocol?: "MICROSOFT_SQLSERVER_SECURITY_PROTOCOL_UNSPECIFIED" | "PLAIN" | "TLS"
[src]

Optional. Security Type for Microsoft SQL Server.

§
serverCertificateValidationRequired?: boolean
[src]

Optional. If set to true, the driver validates the certificate that is sent by the database server.

§
sslCaFile?: string
[src]

Optional. Database Certificate - The content of a .pem or .crt file containing the server public key (for 1-way SSL).

§
technologyType?: string
[src]

Optional. The technology type of MicrosoftSqlserverConnection.

§
username?: string
[src]

Optional. The username Oracle Goldengate uses to connect to the Microsoft SQL Server.