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

AgentCommand

import type { AgentCommand } from "https://googleapis.deno.dev/v1/workloadmanager:v1.ts";
  • An AgentCommand specifies a one-time executable program for the agent to run.
interface AgentCommand {
command?: string;
parameters?: {
[key: string]: string;
}
;
}

§Properties

§
command?: string
[src]

command is the name of the agent one-time executable that will be invoked.

§
parameters?: {
[key: string]: string;
}
[src]

parameters is a map of key/value pairs that can be used to specify additional one-time executable settings.