All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.container.kotlin.inputs.ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@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.ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs.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 ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs(
    public val localSsdCount: Output,
) :
    ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs =
        com.pulumi.gcp.container.inputs.ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs.builder()
            .localSsdCount(localSsdCount.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs].
 */
@PulumiTagMarker
public class ClusterNodeConfigEphemeralStorageLocalSsdConfigArgsBuilder 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("ajoiupijiovoalpl")
    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("plmjvvjtwqfkrraw")
    public suspend fun localSsdCount(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.localSsdCount = mapped
    }

    internal fun build(): ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs =
        ClusterNodeConfigEphemeralStorageLocalSsdConfigArgs(
            localSsdCount = localSsdCount ?: throw PulumiNullFieldException("localSsdCount"),
        )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy