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

PostgreSql

import type { PostgreSql } from "https://googleapis.deno.dev/v1/firebasedataconnect:v1beta.ts";

Settings for PostgreSQL data source.

interface PostgreSql {
cloudSql?: CloudSqlInstance;
database?: string;
schemaValidation?:
| "SQL_SCHEMA_VALIDATION_UNSPECIFIED"
| "NONE"
| "STRICT"
| "COMPATIBLE";
unlinked?: boolean;
}

§Properties

§

Cloud SQL configurations.

§
database?: string
[src]

Required. Name of the PostgreSQL database.

§
schemaValidation?: "SQL_SCHEMA_VALIDATION_UNSPECIFIED" | "NONE" | "STRICT" | "COMPATIBLE"
[src]

Optional. Configure how much Postgresql schema validation to perform. Default to STRICT if not specified.

§
unlinked?: boolean
[src]

No Postgres data source is linked. If set, don't allow database and schema_validation to be configured.