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

AgentInfo

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

VM Agent Info.

interface AgentInfo {
jobId?: string;
reportTime?: Date;
state?:
| "AGENT_STATE_UNSPECIFIED"
| "AGENT_STARTING"
| "AGENT_RUNNING"
| "AGENT_STOPPED";
taskGroupId?: string;
tasks?: AgentTaskInfo[];
}

§Properties

§
jobId?: string
[src]

Optional. The assigned Job ID

§
reportTime?: Date
[src]

When the AgentInfo is generated.

§
state?: "AGENT_STATE_UNSPECIFIED" | "AGENT_STARTING" | "AGENT_RUNNING" | "AGENT_STOPPED"
[src]

Agent state.

§
taskGroupId?: string
[src]

The assigned task group ID.

§

Task Info.