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

DagProcessorResource

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

Configuration for resources used by Airflow DAG processors. This field is supported for Cloud Composer environments in versions composer-3..-airflow-..* and newer.

interface DagProcessorResource {
count?: number;
cpu?: number;
memoryGb?: number;
storageGb?: number;
}

§Properties

§
count?: number
[src]

Optional. The number of DAG processors. If not provided or set to 0, a single DAG processor instance will be created.

§
cpu?: number
[src]

Optional. CPU request and limit for a single Airflow DAG processor replica.

§
memoryGb?: number
[src]

Optional. Memory (GB) request and limit for a single Airflow DAG processor replica.

§
storageGb?: number
[src]

Optional. Storage (GB) request and limit for a single Airflow DAG processor replica.