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/datamigration:v1.ts";

Configuration for Oracle Automatic Storage Management (ASM) connection.

interface OracleAsmConfig {
asmService?: string;
hostname?: string;
password?: string;
readonly passwordSet?: boolean;
port?: number;
ssl?: SslConfig;
username?: string;
}

§Properties

§
asmService?: string
[src]

Required. ASM service name for the Oracle ASM connection.

§
hostname?: string
[src]

Required. Hostname for the Oracle ASM connection.

§
password?: string
[src]

Required. Input only. Password for the Oracle ASM connection.

§
readonly passwordSet?: boolean
[src]

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

§
port?: number
[src]

Required. Port for the Oracle ASM connection.

§

Optional. SSL configuration for the Oracle connection.

§
username?: string
[src]

Required. Username for the Oracle ASM connection.