com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterAntiAffinityGroupsArgs.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.gkeonprem.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAntiAffinityGroupsArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property aagConfigDisabled Spread nodes across at least three physical hosts (requires at least three
* hosts).
* Enabled by default.
*/
public data class VMwareClusterAntiAffinityGroupsArgs(
public val aagConfigDisabled: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAntiAffinityGroupsArgs =
com.pulumi.gcp.gkeonprem.inputs.VMwareClusterAntiAffinityGroupsArgs.builder()
.aagConfigDisabled(aagConfigDisabled.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VMwareClusterAntiAffinityGroupsArgs].
*/
@PulumiTagMarker
public class VMwareClusterAntiAffinityGroupsArgsBuilder internal constructor() {
private var aagConfigDisabled: Output? = null
/**
* @param value Spread nodes across at least three physical hosts (requires at least three
* hosts).
* Enabled by default.
*/
@JvmName("vmvherqviieypxpq")
public suspend fun aagConfigDisabled(`value`: Output) {
this.aagConfigDisabled = value
}
/**
* @param value Spread nodes across at least three physical hosts (requires at least three
* hosts).
* Enabled by default.
*/
@JvmName("hygjpgshlxucjrqg")
public suspend fun aagConfigDisabled(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.aagConfigDisabled = mapped
}
internal fun build(): VMwareClusterAntiAffinityGroupsArgs = VMwareClusterAntiAffinityGroupsArgs(
aagConfigDisabled = aagConfigDisabled ?: throw PulumiNullFieldException("aagConfigDisabled"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy