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
§
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.