DockerImageArgs

data class DockerImageArgs(val dockerImageUri: Output<String>, val dockerSpecificationType: Output<String>, val platform: Output<DockerImagePlatformArgs>? = null) : ConvertibleToJava<DockerImageArgs>

Class to represent configuration settings for Docker Build

Constructors

Link copied to clipboard
constructor(dockerImageUri: Output<String>, dockerSpecificationType: Output<String>, platform: Output<DockerImagePlatformArgs>? = null)

Properties

Link copied to clipboard
val dockerImageUri: Output<String>

Required Image name of a custom base image.

Link copied to clipboard

Enum to determine docker specification type. Must be either Build or Image. Expected value is 'Image'.

Link copied to clipboard
val platform: Output<DockerImagePlatformArgs>? = null

The platform information of the docker image.

Functions

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