![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.hardwaresecuritymodules.kotlin.inputs.CloudHsmPropertiesArgs.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.hardwaresecuritymodules.kotlin.inputs
import com.pulumi.azurenative.hardwaresecuritymodules.inputs.CloudHsmPropertiesArgs.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 Cloud HSM Properties
* @property fqdn FQDN of the Cloud HSM
* @property state The Cloud HSM State
* @property stateMessage The Cloud HSM State message
*/
public data class CloudHsmPropertiesArgs(
public val fqdn: Output? = null,
public val state: Output? = null,
public val stateMessage: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.hardwaresecuritymodules.inputs.CloudHsmPropertiesArgs =
com.pulumi.azurenative.hardwaresecuritymodules.inputs.CloudHsmPropertiesArgs.builder()
.fqdn(fqdn?.applyValue({ args0 -> args0 }))
.state(state?.applyValue({ args0 -> args0 }))
.stateMessage(stateMessage?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [CloudHsmPropertiesArgs].
*/
@PulumiTagMarker
public class CloudHsmPropertiesArgsBuilder internal constructor() {
private var fqdn: Output? = null
private var state: Output? = null
private var stateMessage: Output? = null
/**
* @param value FQDN of the Cloud HSM
*/
@JvmName("kkvcuvcqqjkhfvor")
public suspend fun fqdn(`value`: Output) {
this.fqdn = value
}
/**
* @param value The Cloud HSM State
*/
@JvmName("hhypjfihohwcafgx")
public suspend fun state(`value`: Output) {
this.state = value
}
/**
* @param value The Cloud HSM State message
*/
@JvmName("mbtbpjudbftnlkko")
public suspend fun stateMessage(`value`: Output) {
this.stateMessage = value
}
/**
* @param value FQDN of the Cloud HSM
*/
@JvmName("jxtcxviillommtqd")
public suspend fun fqdn(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.fqdn = mapped
}
/**
* @param value The Cloud HSM State
*/
@JvmName("txferykugkobpjwl")
public suspend fun state(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.state = mapped
}
/**
* @param value The Cloud HSM State message
*/
@JvmName("yaopqaqlaqowhepd")
public suspend fun stateMessage(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.stateMessage = mapped
}
internal fun build(): CloudHsmPropertiesArgs = CloudHsmPropertiesArgs(
fqdn = fqdn,
state = state,
stateMessage = stateMessage,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy