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

OracleAsmConfig

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

Configuration for Oracle Automatic Storage Management (ASM) connection.

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

§Properties

§
asmService?: string
[src]

Required. ASM service name for the Oracle ASM connection.

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

Optional. Connection string attributes

§
hostname?: string
[src]

Required. Hostname for the Oracle ASM connection.

§
oracleSslConfig?: OracleSslConfig
[src]

Optional. SSL configuration for the Oracle connection.

§
password?: string
[src]

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

§
port?: number
[src]

Required. Port for the Oracle ASM connection.

§
secretManagerStoredPassword?: string
[src]

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

§
username?: string
[src]

Required. Username for the Oracle ASM connection.