com.pulumi.kubernetes.flowcontrol.v1beta3.kotlin.inputs.FlowSchemaStatusArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-kubernetes-kotlin Show documentation
Show all versions of pulumi-kubernetes-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.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.kubernetes.flowcontrol.v1beta3.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import com.pulumi.kubernetes.flowcontrol.v1beta3.inputs.FlowSchemaStatusArgs.builder
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* FlowSchemaStatus represents the current state of a FlowSchema.
* @property conditions `conditions` is a list of the current states of FlowSchema.
*/
public data class FlowSchemaStatusArgs(
public val conditions: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.kubernetes.flowcontrol.v1beta3.inputs.FlowSchemaStatusArgs =
com.pulumi.kubernetes.flowcontrol.v1beta3.inputs.FlowSchemaStatusArgs.builder()
.conditions(
conditions?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [FlowSchemaStatusArgs].
*/
@PulumiTagMarker
public class FlowSchemaStatusArgsBuilder internal constructor() {
private var conditions: Output>? = null
/**
* @param value `conditions` is a list of the current states of FlowSchema.
*/
@JvmName("jjbrqnrgxxyjxjfl")
public suspend fun conditions(`value`: Output>) {
this.conditions = value
}
@JvmName("rbhsdweitmfaiwle")
public suspend fun conditions(vararg values: Output) {
this.conditions = Output.all(values.asList())
}
/**
* @param values `conditions` is a list of the current states of FlowSchema.
*/
@JvmName("jxtfahxemhmedgpj")
public suspend fun conditions(values: List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy