com.pulumi.gcp.gkeonprem.kotlin.inputs.VMwareClusterControlPlaneNodeVsphereConfigArgs.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.VMwareClusterControlPlaneNodeVsphereConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property datastore The Vsphere datastore used by the Control Plane Node.
* @property storagePolicyName The Vsphere storage policy used by the control plane Node.
*/
public data class VMwareClusterControlPlaneNodeVsphereConfigArgs(
public val datastore: Output? = null,
public val storagePolicyName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.gkeonprem.inputs.VMwareClusterControlPlaneNodeVsphereConfigArgs =
com.pulumi.gcp.gkeonprem.inputs.VMwareClusterControlPlaneNodeVsphereConfigArgs.builder()
.datastore(datastore?.applyValue({ args0 -> args0 }))
.storagePolicyName(storagePolicyName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [VMwareClusterControlPlaneNodeVsphereConfigArgs].
*/
@PulumiTagMarker
public class VMwareClusterControlPlaneNodeVsphereConfigArgsBuilder internal constructor() {
private var datastore: Output? = null
private var storagePolicyName: Output? = null
/**
* @param value The Vsphere datastore used by the Control Plane Node.
*/
@JvmName("dibqlvrwrsemxuaj")
public suspend fun datastore(`value`: Output) {
this.datastore = value
}
/**
* @param value The Vsphere storage policy used by the control plane Node.
*/
@JvmName("ivivuwwykfyekkax")
public suspend fun storagePolicyName(`value`: Output) {
this.storagePolicyName = value
}
/**
* @param value The Vsphere datastore used by the Control Plane Node.
*/
@JvmName("xbkxgcoojalgtqki")
public suspend fun datastore(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.datastore = mapped
}
/**
* @param value The Vsphere storage policy used by the control plane Node.
*/
@JvmName("xypqkynxnwmwnirg")
public suspend fun storagePolicyName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storagePolicyName = mapped
}
internal fun build(): VMwareClusterControlPlaneNodeVsphereConfigArgs =
VMwareClusterControlPlaneNodeVsphereConfigArgs(
datastore = datastore,
storagePolicyName = storagePolicyName,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy