
com.pulumi.googlenative.container.v1.kotlin.inputs.GcePersistentDiskCsiDriverConfigArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-google-native-kotlin Show documentation
Show all versions of pulumi-google-native-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.
The newest version!
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.googlenative.container.v1.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.googlenative.container.v1.inputs.GcePersistentDiskCsiDriverConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Configuration for the Compute Engine PD CSI driver.
* @property enabled Whether the Compute Engine PD CSI driver is enabled for this cluster.
*/
public data class GcePersistentDiskCsiDriverConfigArgs(
public val enabled: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.googlenative.container.v1.inputs.GcePersistentDiskCsiDriverConfigArgs =
com.pulumi.googlenative.container.v1.inputs.GcePersistentDiskCsiDriverConfigArgs.builder()
.enabled(enabled?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GcePersistentDiskCsiDriverConfigArgs].
*/
@PulumiTagMarker
public class GcePersistentDiskCsiDriverConfigArgsBuilder internal constructor() {
private var enabled: Output? = null
/**
* @param value Whether the Compute Engine PD CSI driver is enabled for this cluster.
*/
@JvmName("gpoihoyykwdwietw")
public suspend fun enabled(`value`: Output) {
this.enabled = value
}
/**
* @param value Whether the Compute Engine PD CSI driver is enabled for this cluster.
*/
@JvmName("sbtyuhuaouvoqjst")
public suspend fun enabled(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.enabled = mapped
}
internal fun build(): GcePersistentDiskCsiDriverConfigArgs = GcePersistentDiskCsiDriverConfigArgs(
enabled = enabled,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy