com.pulumi.gcp.edgecontainer.kotlin.inputs.ClusterSystemAddonsConfigIngressArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-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.gcp.edgecontainer.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.edgecontainer.inputs.ClusterSystemAddonsConfigIngressArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property disabled Whether Ingress is disabled.
* @property ipv4Vip Ingress VIP.
*/
public data class ClusterSystemAddonsConfigIngressArgs(
public val disabled: Output? = null,
public val ipv4Vip: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.edgecontainer.inputs.ClusterSystemAddonsConfigIngressArgs =
com.pulumi.gcp.edgecontainer.inputs.ClusterSystemAddonsConfigIngressArgs.builder()
.disabled(disabled?.applyValue({ args0 -> args0 }))
.ipv4Vip(ipv4Vip?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterSystemAddonsConfigIngressArgs].
*/
@PulumiTagMarker
public class ClusterSystemAddonsConfigIngressArgsBuilder internal constructor() {
private var disabled: Output? = null
private var ipv4Vip: Output? = null
/**
* @param value Whether Ingress is disabled.
*/
@JvmName("hcitngtistcvulld")
public suspend fun disabled(`value`: Output) {
this.disabled = value
}
/**
* @param value Ingress VIP.
*/
@JvmName("jgivisojtfnpgbno")
public suspend fun ipv4Vip(`value`: Output) {
this.ipv4Vip = value
}
/**
* @param value Whether Ingress is disabled.
*/
@JvmName("uqqpyvmeyrtgqteu")
public suspend fun disabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.disabled = mapped
}
/**
* @param value Ingress VIP.
*/
@JvmName("aqmxcvpqemqvtjxk")
public suspend fun ipv4Vip(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.ipv4Vip = mapped
}
internal fun build(): ClusterSystemAddonsConfigIngressArgs = ClusterSystemAddonsConfigIngressArgs(
disabled = disabled,
ipv4Vip = ipv4Vip,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy