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

ReservationBlock

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

Represents a reservation block resource.

interface ReservationBlock {
readonly count?: number;
readonly creationTimestamp?: string;
readonly healthInfo?: ReservationBlockHealthInfo;
readonly id?: bigint;
readonly inUseCount?: number;
readonly kind?: string;
readonly name?: string;
readonly physicalTopology?: ReservationBlockPhysicalTopology;
readonly reservationMaintenance?: GroupMaintenanceInfo;
readonly reservationSubBlockCount?: number;
readonly reservationSubBlockInUseCount?: number;
readonly selfLink?: string;
readonly selfLinkWithId?: string;
readonly status?:
| "CREATING"
| "DELETING"
| "INVALID"
| "READY";
readonly zone?: string;
}

§Properties

§
readonly count?: number
[src]

Output only. [Output Only] The number of resources that are allocated in this reservation block.

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] Creation timestamp inRFC3339 text format.

§
readonly healthInfo?: ReservationBlockHealthInfo
[src]

Output only. [Output Only] Health information for the reservation block.

§
readonly id?: bigint
[src]

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

§
readonly inUseCount?: number
[src]

Output only. [Output Only] The number of instances that are currently in use on this reservation block.

§
readonly kind?: string
[src]

Output only. [Output Only] Type of the resource. Alwayscompute#reservationBlock for reservation blocks.

§
readonly name?: string
[src]

Output only. [Output Only] The name of this reservation block generated by Google Compute Engine. The name must be 1-63 characters long, and comply with RFC1035 @pattern a-z?

§
readonly physicalTopology?: ReservationBlockPhysicalTopology
[src]

Output only. [Output Only] The physical topology of the reservation block.

§
readonly reservationMaintenance?: GroupMaintenanceInfo
[src]

Output only. [Output Only] Maintenance information for this reservation block.

§
readonly reservationSubBlockCount?: number
[src]

Output only. [Output Only] The number of reservation subBlocks associated with this reservation block.

§
readonly reservationSubBlockInUseCount?: number
[src]

Output only. [Output Only] The number of in-use reservation subBlocks associated with this reservation block. If at least one VM is running on a subBlock, it is considered in-use.

§
readonly selfLinkWithId?: string
[src]

Output only. [Output Only] Server-defined URL for this resource with the resource id.

§
readonly status?: "CREATING" | "DELETING" | "INVALID" | "READY"
[src]

Output only. [Output Only] Status of the reservation block.

§
readonly zone?: string
[src]

Output only. [Output Only] Zone in which the reservation block resides.