com.pulumi.azure.hdinsight.kotlin.inputs.HadoopClusterGatewayArgs.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.HadoopClusterGatewayArgs.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 password The password used for the Ambari Portal.
* > **NOTE:** This password must be different from the one used for the `head_node`, `worker_node` and `zookeeper_node` roles.
* @property username The username used for the Ambari Portal. Changing this forces a new resource to be created.
*/
public data class HadoopClusterGatewayArgs(
public val password: Output,
public val username: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.hdinsight.inputs.HadoopClusterGatewayArgs =
com.pulumi.azure.hdinsight.inputs.HadoopClusterGatewayArgs.builder()
.password(password.applyValue({ args0 -> args0 }))
.username(username.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [HadoopClusterGatewayArgs].
*/
@PulumiTagMarker
public class HadoopClusterGatewayArgsBuilder internal constructor() {
private var password: Output? = null
private var username: Output? = null
/**
* @param value The password used for the Ambari Portal.
* > **NOTE:** This password must be different from the one used for the `head_node`, `worker_node` and `zookeeper_node` roles.
*/
@JvmName("mggheqeyoakklerv")
public suspend fun password(`value`: Output) {
this.password = value
}
/**
* @param value The username used for the Ambari Portal. Changing this forces a new resource to be created.
*/
@JvmName("unmauhdrksyqntil")
public suspend fun username(`value`: Output) {
this.username = value
}
/**
* @param value The password used for the Ambari Portal.
* > **NOTE:** This password must be different from the one used for the `head_node`, `worker_node` and `zookeeper_node` roles.
*/
@JvmName("qysoalpqdolaojsw")
public suspend fun password(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.password = mapped
}
/**
* @param value The username used for the Ambari Portal. Changing this forces a new resource to be created.
*/
@JvmName("ptnmaycurlbedfuf")
public suspend fun username(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.username = mapped
}
internal fun build(): HadoopClusterGatewayArgs = HadoopClusterGatewayArgs(
password = password ?: throw PulumiNullFieldException("password"),
username = username ?: throw PulumiNullFieldException("username"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy