V2FunctionCustomContainerConfigArgs

data class V2FunctionCustomContainerConfigArgs(val accelerationType: Output<String>? = null, val args: Output<String>? = null, val command: Output<String>? = null, val image: Output<String>? = null, val webServerMode: Output<Boolean>? = null) : ConvertibleToJava<V2FunctionCustomContainerConfigArgs>

Constructors

Link copied to clipboard
constructor(accelerationType: Output<String>? = null, args: Output<String>? = null, command: Output<String>? = null, image: Output<String>? = null, webServerMode: Output<Boolean>? = null)

Properties

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

Image acceleration type. The value Default is to enable acceleration and None is to disable acceleration.

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

Container startup parameters.

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

Container start command, equivalent to Docker ENTRYPOINT.

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

Container Image address. Example value: registry-vpc.cn-hangzhou.aliyuncs.com/fc-demo/helloworld:v1beta1.

Link copied to clipboard
val webServerMode: Output<Boolean>? = null

Whether the image is run in Web Server mode. The value of true needs to implement the Web Server in the container image to listen to the port and process the request. The value of false needs to actively exit the process after the container runs, and the ExitCode needs to be 0. Default true.

Functions

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