com.pulumi.azure.hdinsight.kotlin.inputs.InteractiveQueryClusterComponentVersionArgs.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.InteractiveQueryClusterComponentVersionArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property interactiveHive The version of Interactive Query which should be used for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
*/
public data class InteractiveQueryClusterComponentVersionArgs(
public val interactiveHive: Output,
) : ConvertibleToJava {
override fun toJava():
com.pulumi.azure.hdinsight.inputs.InteractiveQueryClusterComponentVersionArgs =
com.pulumi.azure.hdinsight.inputs.InteractiveQueryClusterComponentVersionArgs.builder()
.interactiveHive(interactiveHive.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [InteractiveQueryClusterComponentVersionArgs].
*/
@PulumiTagMarker
public class InteractiveQueryClusterComponentVersionArgsBuilder internal constructor() {
private var interactiveHive: Output? = null
/**
* @param value The version of Interactive Query which should be used for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
*/
@JvmName("hwjxbhbukgwsggvo")
public suspend fun interactiveHive(`value`: Output) {
this.interactiveHive = value
}
/**
* @param value The version of Interactive Query which should be used for this HDInsight Interactive Query Cluster. Changing this forces a new resource to be created.
*/
@JvmName("slmqrovnbpianypd")
public suspend fun interactiveHive(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.interactiveHive = mapped
}
internal fun build(): InteractiveQueryClusterComponentVersionArgs =
InteractiveQueryClusterComponentVersionArgs(
interactiveHive = interactiveHive ?: throw PulumiNullFieldException("interactiveHive"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy