ApplicationWorkerConfigurationArgs

data class ApplicationWorkerConfigurationArgs(val cpu: Output<String>, val disk: Output<String>? = null, val diskType: Output<String>? = null, val memory: Output<String>) : ConvertibleToJava<ApplicationWorkerConfigurationArgs>

Constructors

Link copied to clipboard
constructor(cpu: Output<String>, disk: Output<String>? = null, diskType: Output<String>? = null, memory: Output<String>)

Properties

Link copied to clipboard
val cpu: Output<String>

Per worker CPU resource. vCPU is the only supported unit and specifying vCPU is optional.

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

Per worker Disk resource. GB is the only supported unit and specifying GB is optional

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

Per worker DiskType resource. Shuffle optimized and Standard are only supported types and specifying diskType is optional

Link copied to clipboard
val memory: Output<String>

Per worker memory resource. GB is the only supported unit and specifying GB is optional.

Functions

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