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

StopAirflowCommandRequest

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

Stop Airflow Command request.

interface StopAirflowCommandRequest {
executionId?: string;
force?: boolean;
pod?: string;
podNamespace?: string;
}

§Properties

§
executionId?: string
[src]

The unique ID of the command execution.

§
force?: boolean
[src]

If true, the execution is terminated forcefully (SIGKILL). If false, the execution is stopped gracefully, giving it time for cleanup.

§
pod?: string
[src]

The name of the pod where the command is executed.

§
podNamespace?: string
[src]

The namespace of the pod where the command is executed.