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

GoogleCloudRunV2CloudSqlInstance

import type { GoogleCloudRunV2CloudSqlInstance } from "https://googleapis.deno.dev/v1/run:v2.ts";

Represents a set of Cloud SQL instances. Each one will be available under /cloudsql/[instance]. Visit https://cloud.google.com/sql/docs/mysql/connect-run for more information on how to connect Cloud SQL and Cloud Run.

interface GoogleCloudRunV2CloudSqlInstance {
instances?: string[];
}

§Properties

§
instances?: string[]
[src]

A list of Cloud SQL instance connection names. Cloud Run uses these to establish connections to the specified Cloud SQL instances. While the SQL instance name itself is unique within a project, the full connection name requires the location for proper routing. Format: {project}:{location}:{instance} Example: my-project:us-central1:my-instance You can find this value on the instance's Overview page in the Google Cloud console or by using the following gcloud command: sh gcloud sql instances describe INSTANCE_NAME \ --format='value(connectionName)' Visit https://cloud.google.com/sql/docs/mysql/connect-run for more information on how to connect Cloud SQL and Cloud Run.