
com.pulumi.googlenative.composer.v1beta1.kotlin.outputs.TriggererResourceResponse.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.composer.v1beta1.kotlin.outputs
import kotlin.Double
import kotlin.Int
import kotlin.Suppress
/**
* Configuration for resources used by Airflow triggerers.
* @property count Optional. The number of triggerers.
* @property cpu Optional. CPU request and limit for a single Airflow triggerer replica.
* @property memoryGb Optional. Memory (GB) request and limit for a single Airflow triggerer replica.
*/
public data class TriggererResourceResponse(
public val count: Int,
public val cpu: Double,
public val memoryGb: Double,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.googlenative.composer.v1beta1.outputs.TriggererResourceResponse): TriggererResourceResponse = TriggererResourceResponse(
count = javaType.count(),
cpu = javaType.cpu(),
memoryGb = javaType.memoryGb(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy