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 {
count?: number;
creationTimestamp?: string;
id?: bigint;
inUseCount?: number;
kind?: string;
name?: string;
reservationMaintenance?: GroupMaintenanceInfo;
reservationSubBlockCount?: number;
reservationSubBlockInUseCount?: number;
selfLink?: string;
selfLinkWithId?: string;
status?:
| "CREATING"
| "DELETING"
| "INVALID"
| "READY";
zone?: string;
}

§Properties

§
count?: number
[src]

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

§
creationTimestamp?: string
[src]

[Output Only] Creation timestamp in RFC3339 text format.

§
id?: bigint
[src]

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

§
inUseCount?: number
[src]

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

§
kind?: string
[src]

[Output Only] Type of the resource. Always compute#reservationBlock for reservation blocks.

§
name?: string
[src]

[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?

§

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

§
reservationMaintenance?: GroupMaintenanceInfo
[src]

[Output Only] Maintenance information for this reservation block.

§
reservationSubBlockCount?: number
[src]

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

§
reservationSubBlockInUseCount?: number
[src]

[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.

§
selfLinkWithId?: string
[src]

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

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

[Output Only] Status of the reservation block.

§
zone?: string
[src]

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