SchedulerResourceArgs

data class SchedulerResourceArgs(val count: Output<Int>? = null, val cpu: Output<Double>? = null, val memoryGb: Output<Double>? = null, val storageGb: Output<Double>? = null) : ConvertibleToJava<SchedulerResourceArgs>

Configuration for resources used by Airflow schedulers.

Constructors

Link copied to clipboard
fun SchedulerResourceArgs(count: Output<Int>? = null, cpu: Output<Double>? = null, memoryGb: Output<Double>? = null, storageGb: Output<Double>? = null)

Functions

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

Properties

Link copied to clipboard
val count: Output<Int>? = null

Optional. The number of schedulers.

Link copied to clipboard
val cpu: Output<Double>? = null

Optional. CPU request and limit for a single Airflow scheduler replica.

Link copied to clipboard
val memoryGb: Output<Double>? = null

Optional. Memory (GB) request and limit for a single Airflow scheduler replica.

Link copied to clipboard
val storageGb: Output<Double>? = null

Optional. Storage (GB) request and limit for a single Airflow scheduler replica.