![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.hdinsight.kotlin.inputs.HBaseClusterComputeIsolationArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.hdinsight.kotlin.inputs
import com.pulumi.azure.hdinsight.inputs.HBaseClusterComputeIsolationArgs.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 HBaseClusterComputeIsolationArgs(
public val computeIsolationEnabled: Output? = null,
public val hostSku: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hdinsight.inputs.HBaseClusterComputeIsolationArgs =
com.pulumi.azure.hdinsight.inputs.HBaseClusterComputeIsolationArgs.builder()
.computeIsolationEnabled(computeIsolationEnabled?.applyValue({ args0 -> args0 }))
.hostSku(hostSku?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HBaseClusterComputeIsolationArgs].
*/
@PulumiTagMarker
public class HBaseClusterComputeIsolationArgsBuilder 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("elamsrhuevppvspk")
public suspend fun computeIsolationEnabled(`value`: Output) {
this.computeIsolationEnabled = value
}
/**
* @param value The name of the host SKU.
*/
@JvmName("iamdcipbffkqyvus")
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("hshmvqcgmvygplxi")
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("yabliiidiimvabvy")
public suspend fun hostSku(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.hostSku = mapped
}
internal fun build(): HBaseClusterComputeIsolationArgs = HBaseClusterComputeIsolationArgs(
computeIsolationEnabled = computeIsolationEnabled,
hostSku = hostSku,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy