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

ExecuteAirflowCommandRequest

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

Execute Airflow Command request.

interface ExecuteAirflowCommandRequest {
command?: string;
parameters?: string[];
subcommand?: string;
}

§Properties

§
command?: string
[src]

Airflow command.

§
parameters?: string[]
[src]

Parameters for the Airflow command/subcommand as an array of arguments. It may contain positional arguments like ["my-dag-id"], key-value parameters like ["--foo=bar"] or ["--foo","bar"], or other flags like ["-f"].

§
subcommand?: string
[src]

Airflow subcommand.