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

GoldengateDb2ConnectionProperties

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

The properties of GoldengateDb2Connection.

interface GoldengateDb2ConnectionProperties {
additionalAttributes?: NameValuePair[];
database?: string;
host?: string;
password?: string;
passwordSecretVersion?: string;
port?: number;
securityProtocol?: "DB2_SECURITY_PROTOCOL_UNSPECIFIED" | "PLAIN" | "TLS";
sslClientKeystashFile?: string;
sslClientKeystoredbFile?: string;
sslServerCertificateFile?: 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 Db2 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 Db2 connection. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
port?: number
[src]

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

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

Optional. Security protocol for the DB2 database.

§
sslClientKeystashFile?: string
[src]

Optional. The keystash file which contains the encrypted password to the key database file. Not supported for IBM Db2 for i.

§
sslClientKeystoredbFile?: string
[src]

Optional. The keystore file created at the client containing the server certificate / CA root certificate. Not supported for IBM Db2 for i.

§
sslServerCertificateFile?: string
[src]

Optional. The file which contains the self-signed server certificate / Certificate Authority (CA) certificate.

§
technologyType?: string
[src]

Optional. The technology type of Db2Connection.

§
username?: string
[src]

Optional. The username Oracle Goldengate uses to connect to the DB2 database.