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

TaskGroupStatus

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

Aggregated task status for a TaskGroup.

interface TaskGroupStatus {
counts?: {
[key: string]: bigint;
}
;
instances?: InstanceStatus[];
}

§Properties

§
counts?: {
[key: string]: bigint;
}
[src]

Count of task in each state in the TaskGroup. The map key is task state name.

§
instances?: InstanceStatus[]
[src]

Status of instances allocated for the TaskGroup.