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

LocationPolicy

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

Configuration for location policy among multiple possible locations (e.g. preferences for zone selection among zones in a single region).

interface LocationPolicy {
locations?: {
[key: string]: LocationPolicyLocation;
}
;
targetShape?: "ANY" | "ANY_SINGLE_ZONE" | "BALANCED";
}

§Properties

§
locations?: {
[key: string]: LocationPolicyLocation;
}
[src]

Location configurations mapped by location name. Currently only zone names are supported and must be represented as valid internal URLs, such as zones/us-central1-a.

§
targetShape?: "ANY" | "ANY_SINGLE_ZONE" | "BALANCED"
[src]

Strategy for distributing VMs across zones in a region.