FunctionImageConfigArgs

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

Constructors

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

Properties

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

Parameters that you want to pass in with entry_point.

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

Entry point to your application, which is typically the location of the runtime executable.

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

Working directory.

Functions

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