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

DatabaseEngineInfo

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

The type and version of a source or destination database.

interface DatabaseEngineInfo {
engine?:
| "DATABASE_ENGINE_UNSPECIFIED"
| "MYSQL"
| "POSTGRESQL"
| "SQLSERVER"
| "ORACLE";
version?: string;
}

§Properties

§
engine?: "DATABASE_ENGINE_UNSPECIFIED" | "MYSQL" | "POSTGRESQL" | "SQLSERVER" | "ORACLE"
[src]

Required. Engine type.

§
version?: string
[src]

Required. Engine version, for example "12.c.1".