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

SdkHarnessContainerImage

import type { SdkHarnessContainerImage } from "https://googleapis.deno.dev/v1/dataflow:v1b3.ts";

Defines an SDK harness container for executing Dataflow pipelines.

interface SdkHarnessContainerImage {
capabilities?: string[];
containerImage?: string;
environmentId?: string;
useSingleCorePerContainer?: boolean;
}

§Properties

§
capabilities?: string[]
[src]

The set of capabilities enumerated in the above Environment proto. See also beam_runner_api.proto

§
containerImage?: string
[src]

A docker container image that resides in Google Container Registry.

§
environmentId?: string
[src]

Environment ID for the Beam runner API proto Environment that corresponds to the current SDK Harness.

§
useSingleCorePerContainer?: boolean
[src]

If true, recommends the Dataflow service to use only one core per SDK container instance with this image. If false (or unset) recommends using more than one core per SDK container instance with this image for efficiency. Note that Dataflow service may choose to override this property if needed.