TriggererResourceArgs

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

Configuration for resources used by Airflow triggerers.

Constructors

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

Functions

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

Properties

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

Optional. The number of triggerers.

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

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

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

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