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

QueuedResource

import type { QueuedResource } from "https://googleapis.deno.dev/v1/tpu:v2.ts";

A QueuedResource represents a request for resources that will be placed in a queue and fulfilled when the necessary resources are available.

interface QueuedResource {
readonly createTime?: Date;
guaranteed?: Guaranteed;
readonly name?: string;
queueingPolicy?: QueueingPolicy;
reservationName?: string;
spot?: Spot;
readonly state?: QueuedResourceState;
tpu?: Tpu;
}

§Properties

§
readonly createTime?: Date
[src]

Output only. The time when the QueuedResource was created.

§
guaranteed?: Guaranteed
[src]

Optional. The Guaranteed tier

§
readonly name?: string
[src]

Output only. Immutable. The name of the QueuedResource.

§
queueingPolicy?: QueueingPolicy
[src]

Optional. The queueing policy of the QueuedRequest.

§
reservationName?: string
[src]

Optional. Name of the reservation in which the resource should be provisioned. Format: projects/{project}/locations/{zone}/reservations/{reservation}

§
spot?: Spot
[src]

Optional. The Spot tier.

§
readonly state?: QueuedResourceState
[src]

Output only. State of the QueuedResource request.

§
tpu?: Tpu
[src]

Optional. Defines a TPU resource.