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

Zone

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

Represents a Zone resource. A zone is a deployment area. These deployment areas are subsets of a region. For example the zone us-east1-a is located in the us-east1 region. For more information, read Regions and Zones.

interface Zone {
availableCpuPlatforms?: string[];
creationTimestamp?: string;
deprecated?: DeprecationStatus;
description?: string;
id?: bigint;
kind?: string;
name?: string;
region?: string;
selfLink?: string;
status?: "DOWN" | "UP";
supportsPzs?: boolean;
}

§Properties

§
availableCpuPlatforms?: string[]
[src]

[Output Only] Available cpu/platform selections for the zone.

§
creationTimestamp?: string
[src]

[Output Only] Creation timestamp in RFC3339 text format.

§

[Output Only] The deprecation status associated with this zone.

§
description?: string
[src]

[Output Only] Textual description of the resource.

§
id?: bigint
[src]

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#zone for zones.

§
name?: string
[src]

[Output Only] Name of the resource.

§
region?: string
[src]

[Output Only] Full URL reference to the region which hosts the zone.

§
status?: "DOWN" | "UP"
[src]

[Output Only] Status of the zone, either UP or DOWN.

§
supportsPzs?: boolean
[src]

[Output Only] Reserved for future use.