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

CloudSqlProperties

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

Connection properties specific to the Cloud SQL.

interface CloudSqlProperties {
credential?: CloudSqlCredential;
database?: string;
instanceId?: string;
readonly serviceAccountId?: string;
type?: "DATABASE_TYPE_UNSPECIFIED" | "POSTGRES" | "MYSQL";
}

§Properties

§

Input only. Cloud SQL credential.

§
database?: string
[src]

Database name.

§
instanceId?: string
[src]

Cloud SQL instance ID in the form project:location:instance.

§
readonly serviceAccountId?: string
[src]

Output only. The account ID of the service used for the purpose of this connection. When the connection is used in the context of an operation in BigQuery, this service account will serve as the identity being used for connecting to the CloudSQL instance specified in this connection.

§
type?: "DATABASE_TYPE_UNSPECIFIED" | "POSTGRES" | "MYSQL"
[src]

Type of the Cloud SQL database.