SdkHarnessContainerImageArgs

data class SdkHarnessContainerImageArgs(val capabilities: Output<List<String>>? = null, val containerImage: Output<String>? = null, val environmentId: Output<String>? = null, val useSingleCorePerContainer: Output<Boolean>? = null) : ConvertibleToJava<SdkHarnessContainerImageArgs>

Defines an SDK harness container for executing Dataflow pipelines.

Constructors

Link copied to clipboard
fun SdkHarnessContainerImageArgs(capabilities: Output<List<String>>? = null, containerImage: Output<String>? = null, environmentId: Output<String>? = null, useSingleCorePerContainer: Output<Boolean>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SdkHarnessContainerImageArgs

Properties

Link copied to clipboard
val capabilities: Output<List<String>>? = null

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

Link copied to clipboard
val containerImage: Output<String>? = null

A docker container image that resides in Google Container Registry.

Link copied to clipboard
val environmentId: Output<String>? = null

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

Link copied to clipboard
val useSingleCorePerContainer: Output<Boolean>? = null

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.