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

com.pulumi.gcp.memcache.kotlin.inputs.InstanceNodeConfigArgs.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.memcache.kotlin.inputs

import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.gcp.memcache.inputs.InstanceNodeConfigArgs.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 cpuCount Number of CPUs per node.
 * @property memorySizeMb Memory size in Mebibytes for each memcache node.
 * - - -
 */
public data class InstanceNodeConfigArgs(
    public val cpuCount: Output,
    public val memorySizeMb: Output,
) : ConvertibleToJava {
    override fun toJava(): com.pulumi.gcp.memcache.inputs.InstanceNodeConfigArgs =
        com.pulumi.gcp.memcache.inputs.InstanceNodeConfigArgs.builder()
            .cpuCount(cpuCount.applyValue({ args0 -> args0 }))
            .memorySizeMb(memorySizeMb.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InstanceNodeConfigArgs].
 */
@PulumiTagMarker
public class InstanceNodeConfigArgsBuilder internal constructor() {
    private var cpuCount: Output? = null

    private var memorySizeMb: Output? = null

    /**
     * @param value Number of CPUs per node.
     */
    @JvmName("ugjkuaictwplwfoa")
    public suspend fun cpuCount(`value`: Output) {
        this.cpuCount = value
    }

    /**
     * @param value Memory size in Mebibytes for each memcache node.
     * - - -
     */
    @JvmName("jpiplljmodqywrut")
    public suspend fun memorySizeMb(`value`: Output) {
        this.memorySizeMb = value
    }

    /**
     * @param value Number of CPUs per node.
     */
    @JvmName("upjlfmbahbqqpjia")
    public suspend fun cpuCount(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.cpuCount = mapped
    }

    /**
     * @param value Memory size in Mebibytes for each memcache node.
     * - - -
     */
    @JvmName("gwrurgvmhtuapfnq")
    public suspend fun memorySizeMb(`value`: Int) {
        val toBeMapped = value
        val mapped = toBeMapped.let({ args0 -> of(args0) })
        this.memorySizeMb = mapped
    }

    internal fun build(): InstanceNodeConfigArgs = InstanceNodeConfigArgs(
        cpuCount = cpuCount ?: throw PulumiNullFieldException("cpuCount"),
        memorySizeMb = memorySizeMb ?: throw PulumiNullFieldException("memorySizeMb"),
    )
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy