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

DatabaseType

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

A message defining the database engine and provider.

interface DatabaseType {
engine?:
| "DATABASE_ENGINE_UNSPECIFIED"
| "MYSQL"
| "POSTGRESQL"
| "SQLSERVER"
| "ORACLE";
provider?:
| "DATABASE_PROVIDER_UNSPECIFIED"
| "CLOUDSQL"
| "RDS"
| "AURORA"
| "ALLOYDB";
}

§Properties

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

The database engine.

§
provider?: "DATABASE_PROVIDER_UNSPECIFIED" | "CLOUDSQL" | "RDS" | "AURORA" | "ALLOYDB"
[src]

The database provider.