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

com.pulumi.azure.hdinsight.kotlin.inputs.InteractiveQueryClusterComputeIsolationArgs.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: 6.14.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.hdinsight.kotlin.inputs

import com.pulumi.azure.hdinsight.inputs.InteractiveQueryClusterComputeIsolationArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName

/**
 *
 * @property computeIsolationEnabled This field indicates whether enable compute isolation or not. Possible values are `true` or `false`.
 * @property hostSku The name of the host SKU.
 */
public data class InteractiveQueryClusterComputeIsolationArgs(
    public val computeIsolationEnabled: Output? = null,
    public val hostSku: Output? = null,
) : ConvertibleToJava {
    override fun toJava():
        com.pulumi.azure.hdinsight.inputs.InteractiveQueryClusterComputeIsolationArgs =
        com.pulumi.azure.hdinsight.inputs.InteractiveQueryClusterComputeIsolationArgs.builder()
            .computeIsolationEnabled(computeIsolationEnabled?.applyValue({ args0 -> args0 }))
            .hostSku(hostSku?.applyValue({ args0 -> args0 })).build()
}

/**
 * Builder for [InteractiveQueryClusterComputeIsolationArgs].
 */
@PulumiTagMarker
public class InteractiveQueryClusterComputeIsolationArgsBuilder internal constructor() {
    private var computeIsolationEnabled: Output? = null

    private var hostSku: Output? = null

    /**
     * @param value This field indicates whether enable compute isolation or not. Possible values are `true` or `false`.
     */
    @JvmName("cnpirccbqscuvrec")
    public suspend fun computeIsolationEnabled(`value`: Output) {
        this.computeIsolationEnabled = value
    }

    /**
     * @param value The name of the host SKU.
     */
    @JvmName("nnweonkeqnxqstry")
    public suspend fun hostSku(`value`: Output) {
        this.hostSku = value
    }

    /**
     * @param value This field indicates whether enable compute isolation or not. Possible values are `true` or `false`.
     */
    @JvmName("vicowktgfwfjyvlg")
    public suspend fun computeIsolationEnabled(`value`: Boolean?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.computeIsolationEnabled = mapped
    }

    /**
     * @param value The name of the host SKU.
     */
    @JvmName("qejdvscpeqwwevxj")
    public suspend fun hostSku(`value`: String?) {
        val toBeMapped = value
        val mapped = toBeMapped?.let({ args0 -> of(args0) })
        this.hostSku = mapped
    }

    internal fun build(): InteractiveQueryClusterComputeIsolationArgs =
        InteractiveQueryClusterComputeIsolationArgs(
            computeIsolationEnabled = computeIsolationEnabled,
            hostSku = hostSku,
        )
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy