![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.hdinsight.kotlin.inputs.SshPublicKeyArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.hdinsight.kotlin.inputs
import com.pulumi.azurenative.hdinsight.inputs.SshPublicKeyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The SSH public key for the cluster nodes.
* @property certificateData The certificate for SSH.
*/
public data class SshPublicKeyArgs(
public val certificateData: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hdinsight.inputs.SshPublicKeyArgs =
com.pulumi.azurenative.hdinsight.inputs.SshPublicKeyArgs.builder()
.certificateData(certificateData?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [SshPublicKeyArgs].
*/
@PulumiTagMarker
public class SshPublicKeyArgsBuilder internal constructor() {
private var certificateData: Output? = null
/**
* @param value The certificate for SSH.
*/
@JvmName("bwdqoasbiiqtlmkt")
public suspend fun certificateData(`value`: Output) {
this.certificateData = value
}
/**
* @param value The certificate for SSH.
*/
@JvmName("bubkwweaqrynxefm")
public suspend fun certificateData(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.certificateData = mapped
}
internal fun build(): SshPublicKeyArgs = SshPublicKeyArgs(
certificateData = certificateData,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy