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

OracleConnectionProfile

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

Specifies connection parameters required specifically for Oracle databases.

interface OracleConnectionProfile {
databaseService?: string;
forwardSshConnectivity?: ForwardSshTunnelConnectivity;
host?: string;
oracleAsmConfig?: OracleAsmConfig;
password?: string;
readonly passwordSet?: boolean;
port?: number;
privateConnectivity?: PrivateConnectivity;
ssl?: SslConfig;
staticServiceIpConnectivity?: StaticServiceIpConnectivity;
username?: string;
}

§Properties

§
databaseService?: string
[src]

Required. Database service for the Oracle connection.

§
forwardSshConnectivity?: ForwardSshTunnelConnectivity
[src]

Forward SSH tunnel connectivity.

§
host?: string
[src]

Required. The IP or hostname of the source Oracle database.

§
oracleAsmConfig?: OracleAsmConfig
[src]

Optional. Configuration for Oracle ASM connection.

§
password?: string
[src]

Required. Input only. The password for the user that Database Migration Service will be using to connect to the database. This field is not returned on request, and the value is encrypted when stored in Database Migration Service.

§
readonly passwordSet?: boolean
[src]

Output only. Indicates whether a new password is included in the request.

§
port?: number
[src]

Required. The network port of the source Oracle database.

§
privateConnectivity?: PrivateConnectivity
[src]

Private connectivity.

§

SSL configuration for the connection to the source Oracle database. * Only SERVER_ONLY configuration is supported for Oracle SSL. * SSL is supported for Oracle versions 12 and above.

§
staticServiceIpConnectivity?: StaticServiceIpConnectivity
[src]

Static Service IP connectivity.

§
username?: string
[src]

Required. The username that Database Migration Service will use to connect to the database. The value is encrypted when stored in Database Migration Service.