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

AvailabilityConfiguration

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

Configuration for availability of database instance

interface AvailabilityConfiguration {
availabilityType?:
| "AVAILABILITY_TYPE_UNSPECIFIED"
| "ZONAL"
| "REGIONAL"
| "MULTI_REGIONAL"
| "AVAILABILITY_TYPE_OTHER";
crossRegionReplicaConfigured?: boolean;
externalReplicaConfigured?: boolean;
promotableReplicaConfigured?: boolean;
}

§Properties

§
availabilityType?: "AVAILABILITY_TYPE_UNSPECIFIED" | "ZONAL" | "REGIONAL" | "MULTI_REGIONAL" | "AVAILABILITY_TYPE_OTHER"
[src]

Availability type. Potential values: * ZONAL: The instance serves data from only one zone. Outages in that zone affect data accessibility. * REGIONAL: The instance can serve data from more than one zone in a region (it is highly available).

§
crossRegionReplicaConfigured?: boolean
[src]

Checks for resources that are configured to have redundancy, and ongoing replication across regions

§
externalReplicaConfigured?: boolean
[src]
§
promotableReplicaConfigured?: boolean
[src]