com.pulumi.gcp.container.kotlin.inputs.ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs.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.container.kotlin.inputs
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.container.inputs.ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs.builder
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property localSsdCount Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
*/
public data class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs(
public val localSsdCount: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.gcp.container.inputs.ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs =
com.pulumi.gcp.container.inputs.ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs.builder()
.localSsdCount(localSsdCount.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs].
*/
@PulumiTagMarker
public class ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgsBuilder internal constructor() {
private var localSsdCount: Output? = null
/**
* @param value Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
*/
@JvmName("vqslaktxwxsrvmlk")
public suspend fun localSsdCount(`value`: Output) {
this.localSsdCount = value
}
/**
* @param value Number of local SSDs to use to back ephemeral storage. Uses NVMe interfaces. Each local SSD is 375 GB in size. If zero, it means to disable using local SSDs as ephemeral storage.
*/
@JvmName("bbsmxummhywsplhx")
public suspend fun localSsdCount(`value`: Int) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.localSsdCount = mapped
}
internal fun build(): ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs =
ClusterNodePoolNodeConfigEphemeralStorageLocalSsdConfigArgs(
localSsdCount = localSsdCount ?: throw PulumiNullFieldException("localSsdCount"),
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy