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

com.pulumi.gcp.container.kotlin.inputs.NodePoolNodeConfigEphemeralStorageConfigArgs.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.NodePoolNodeConfigEphemeralStorageConfigArgs.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 must be 375 or 3000 GB in size, and all local SSDs must share the same size.
 */
public data class NodePoolNodeConfigEphemeralStorageConfigArgs(
    public val localSsdCount: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.container.inputs.NodePoolNodeConfigEphemeralStorageConfigArgs =
        com.pulumi.gcp.container.inputs.NodePoolNodeConfigEphemeralStorageConfigArgs.builder()
            .localSsdCount(localSsdCount.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [NodePoolNodeConfigEphemeralStorageConfigArgs].
 */
@PulumiTagMarker
public class NodePoolNodeConfigEphemeralStorageConfigArgsBuilder 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 must be 375 or 3000 GB in size, and all local SSDs must share the same size.
     */
    @JvmName("ejwamejarnyxtkjt")
    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 must be 375 or 3000 GB in size, and all local SSDs must share the same size.
     */
    @JvmName("sjsxylabcslflvmt")
    public suspend fun localSsdCount(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.localSsdCount = mapped
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy