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

ReservationSlot

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

Represents a reservation slot resource.

interface ReservationSlot {
readonly creationTimestamp?: string;
readonly id?: bigint;
readonly kind?: string;
readonly name?: string;
readonly physicalTopology?: ReservationSlotPhysicalTopology;
readonly selfLink?: string;
readonly selfLinkWithId?: string;
shareSettings?: ShareSettings;
readonly state?:
| "ACTIVE"
| "CREATING"
| "DELETING"
| "STATE_UNSPECIFIED"
| "UNAVAILABLE";
readonly status?: ReservationSlotStatus;
readonly zone?: string;
}

§Properties

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] The creation timestamp, formatted asRFC3339 text.

§
readonly id?: bigint
[src]

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

§
readonly kind?: string
[src]

Output only. [Output Only] The type of resource. Alwayscompute#reservationSlot for reservation slots.

§
readonly name?: string
[src]

Output only. [Output Only] The name of the reservation slot.

§
readonly physicalTopology?: ReservationSlotPhysicalTopology
[src]

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

§
readonly selfLinkWithId?: string
[src]

Output only. [Output Only] A server-defined URL for this resource with the resource ID.

§
shareSettings?: ShareSettings
[src]

Specify share settings to create a shared slot. Set to empty to inherit the share settings from a parent resource.

§
readonly state?: "ACTIVE" | "CREATING" | "DELETING" | "STATE_UNSPECIFIED" | "UNAVAILABLE"
[src]

Output only. [Output Only] The state of the reservation slot.

§
readonly status?: ReservationSlotStatus
[src]

Output only. [Output Only] The status of the reservation slot.

§
readonly zone?: string
[src]

Output only. [Output Only] The zone in which the reservation slot resides.