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

ZoneDistributionConfig

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

Zone distribution config for allocation of cluster resources.

interface ZoneDistributionConfig {
mode?: "ZONE_DISTRIBUTION_MODE_UNSPECIFIED" | "MULTI_ZONE" | "SINGLE_ZONE";
zone?: string;
}

§Properties

§
mode?: "ZONE_DISTRIBUTION_MODE_UNSPECIFIED" | "MULTI_ZONE" | "SINGLE_ZONE"
[src]

Optional. The mode of zone distribution. Defaults to MULTI_ZONE, when not specified.

§
zone?: string
[src]

Optional. When SINGLE ZONE distribution is selected, zone field would be used to allocate all resources in that zone. This is not applicable to MULTI_ZONE, and would be ignored for MULTI_ZONE clusters.