FunctionImageConfigArgs

data class FunctionImageConfigArgs(val command: Output<List<String>>? = null, val entryPoint: Output<List<String>>? = null, val workingDirectory: Output<String>? = null) : ConvertibleToJava<FunctionImageConfigArgs>

Configuration values that override the container image Dockerfile settings. For more information, see Container image settings.

Constructors

Link copied to clipboard
constructor(command: Output<List<String>>? = null, entryPoint: Output<List<String>>? = null, workingDirectory: Output<String>? = null)

Properties

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

Specifies parameters that you want to pass in with ENTRYPOINT. You can specify a maximum of 1,500 parameters in the list.

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

Specifies the entry point to their application, which is typically the location of the runtime executable. You can specify a maximum of 1,500 string entries in the list.

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

Specifies the working directory. The length of the directory string cannot exceed 1,000 characters.

Functions

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