com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterStorageArgs.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.VMwareClusterStorageArgs.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 vsphereCsiDisabled Whether or not to deploy vSphere CSI components in the VMware User Cluster.
* Enabled by default.
*/
public data class VMwareClusterStorageArgs(
public val vsphereCsiDisabled: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterStorageArgs =
com.pulumi.gcp.gkeonprem.inputs.VMwareClusterStorageArgs.builder()
.vsphereCsiDisabled(vsphereCsiDisabled.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VMwareClusterStorageArgs].
*/
@PulumiTagMarker
public class VMwareClusterStorageArgsBuilder internal constructor() {
private var vsphereCsiDisabled: Output? = null
/**
* @param value Whether or not to deploy vSphere CSI components in the VMware User Cluster.
* Enabled by default.
*/
@JvmName("lasljfllesetrfwb")
public suspend fun vsphereCsiDisabled(`value`: Output) {
this.vsphereCsiDisabled = value
}
/**
* @param value Whether or not to deploy vSphere CSI components in the VMware User Cluster.
* Enabled by default.
*/
@JvmName("giaecwpgicpbqbsc")
public suspend fun vsphereCsiDisabled(`value`: Boolean) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.vsphereCsiDisabled = mapped
}
internal fun build(): VMwareClusterStorageArgs = VMwareClusterStorageArgs(
vsphereCsiDisabled = vsphereCsiDisabled ?: throw PulumiNullFieldException("vsphereCsiDisabled"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy