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

OracleProfile

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

Oracle database profile.

interface OracleProfile {
connectionAttributes?: {
[key: string]: string;
}
;
databaseService?: string;
hostname?: string;
oracleAsmConfig?: OracleAsmConfig;
oracleSslConfig?: OracleSslConfig;
password?: string;
port?: number;
secretManagerStoredPassword?: string;
username?: string;
}

§Properties

§
connectionAttributes?: {
[key: string]: string;
}
[src]

Connection string attributes

§
databaseService?: string
[src]

Required. Database for the Oracle connection.

§
hostname?: string
[src]

Required. Hostname for the Oracle connection.

§
oracleAsmConfig?: OracleAsmConfig
[src]

Optional. Configuration for Oracle ASM connection.

§
oracleSslConfig?: OracleSslConfig
[src]

Optional. SSL configuration for the Oracle connection.

§
password?: string
[src]

Optional. Password for the Oracle connection. Mutually exclusive with the secret_manager_stored_password field.

§
port?: number
[src]

Port for the Oracle connection, default value is 1521.

§
secretManagerStoredPassword?: string
[src]

Optional. A reference to a Secret Manager resource name storing the Oracle connection password. Mutually exclusive with the password field.

§
username?: string
[src]

Required. Username for the Oracle connection.