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

PollAirflowCommandResponse

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

Response to PollAirflowCommandRequest.

interface PollAirflowCommandResponse {
exitInfo?: ExitInfo;
output?: Line[];
outputEnd?: boolean;
}

§Properties

§
exitInfo?: ExitInfo
[src]

The result exit status of the command.

§
output?: Line[]
[src]

Output from the command execution. It may not contain the full output and the caller may need to poll for more lines.

§
outputEnd?: boolean
[src]

Whether the command execution has finished and there is no more output.