CustomContainerResponse

data class CustomContainerResponse(val args: List<String>? = null, val command: List<String>? = null, val containerImage: String? = null, val imageRegistryCredential: ImageRegistryCredentialResponse? = null, val languageFramework: String? = null, val server: String? = null)

Custom container payload

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val args: 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: 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: 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

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

Link copied to clipboard
val server: String? = null

The name of the registry that contains the container image