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

GoldengateSnowflakeConnectionProperties

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

The properties of GoldengateSnowflakeConnection.

interface GoldengateSnowflakeConnectionProperties {
authenticationType?: "AUTHENTICATION_TYPE_UNSPECIFIED" | "BASIC" | "KEY_PAIR";
connectionUrl?: string;
password?: string;
passwordSecretVersion?: string;
privateKeyFile?: string;
privateKeyPassphraseSecret?: string;
technologyType?: string;
username?: string;
}

§Properties

§
authenticationType?: "AUTHENTICATION_TYPE_UNSPECIFIED" | "BASIC" | "KEY_PAIR"
[src]

Optional. Used authentication mechanism to access Snowflake.

§
connectionUrl?: string
[src]

Optional. JDBC connection URL. e.g.: 'jdbc:snowflake://.snowflakecomputing.com/?warehouse=&db='

§
password?: string
[src]

Optional. Input only. The password Oracle Goldengate uses to connect to Snowflake platform 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 to connect to Snowflake platform. Format: projects/{project}/secrets/{secret}/versions/{version}.

§
privateKeyFile?: string
[src]

Optional. The content of private key file in PEM format.

§
privateKeyPassphraseSecret?: string
[src]

Optional. Password if the private key file is encrypted.

§
technologyType?: string
[src]

Optional. The technology type of SnowflakeConnection.

§
username?: string
[src]

Optional. The username Oracle Goldengate uses to connect to Snowflake.