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

LocationPreference

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

Preferred location. This specifies where a Cloud SQL instance is located. Note that if the preferred location is not available, the instance will be located as close as possible within the region. Only one location may be specified.

interface LocationPreference {
followGaeApplication?: string;
kind?: string;
secondaryZone?: string;
zone?: string;
}

§Properties

§
followGaeApplication?: string
[src]

The App Engine application to follow, it must be in the same region as the Cloud SQL instance. WARNING: Changing this might restart the instance.

§
kind?: string
[src]

This is always sql#locationPreference.

§
secondaryZone?: string
[src]

The preferred Compute Engine zone for the secondary/failover (for example: us-central1-a, us-central1-b, etc.). To disable this field, set it to 'no_secondary_zone'.

§
zone?: string
[src]

The preferred Compute Engine zone (for example: us-central1-a, us-central1-b, etc.). WARNING: Changing this might restart the instance.