CustomContainerArgs

data class CustomContainerArgs(val args: Output<List<String>>? = null, val command: Output<List<String>>? = null, val containerImage: Output<String>? = null, val imageRegistryCredential: Output<ImageRegistryCredentialArgs>? = null, val languageFramework: Output<String>? = null, val server: Output<String>? = null) : ConvertibleToJava<CustomContainerArgs>

Custom container payload

Constructors

Link copied to clipboard
constructor(args: Output<List<String>>? = null, command: Output<List<String>>? = null, containerImage: Output<String>? = null, imageRegistryCredential: Output<ImageRegistryCredentialArgs>? = null, languageFramework: Output<String>? = null, server: Output<String>? = null)

Properties

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

Arguments to the entrypoint. The docker image's CMD is used if this is not provided.

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

Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided.

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

Container image of the custom container. This should be in the form of : without the server name of the registry

Link copied to clipboard

Credential of the image registry

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

Language framework of the container image uploaded. Supported values: "springboot", "", null.

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

The name of the registry that contains the container image

Functions

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