![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.keyvault.kotlin.inputs.MHSMGeoReplicatedRegionArgs.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.keyvault.kotlin.inputs
import com.pulumi.azurenative.keyvault.inputs.MHSMGeoReplicatedRegionArgs.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
/**
* A region that this managed HSM Pool has been extended to.
* @property isPrimary A boolean value that indicates whether the region is the primary region or a secondary region.
* @property name Name of the geo replicated region.
*/
public data class MHSMGeoReplicatedRegionArgs(
public val isPrimary: Output? = null,
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.keyvault.inputs.MHSMGeoReplicatedRegionArgs =
com.pulumi.azurenative.keyvault.inputs.MHSMGeoReplicatedRegionArgs.builder()
.isPrimary(isPrimary?.applyValue({ args0 -> args0 }))
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MHSMGeoReplicatedRegionArgs].
*/
@PulumiTagMarker
public class MHSMGeoReplicatedRegionArgsBuilder internal constructor() {
private var isPrimary: Output? = null
private var name: Output? = null
/**
* @param value A boolean value that indicates whether the region is the primary region or a secondary region.
*/
@JvmName("xnddgatoshtejews")
public suspend fun isPrimary(`value`: Output) {
this.isPrimary = value
}
/**
* @param value Name of the geo replicated region.
*/
@JvmName("nrsljjmodkvmrdei")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value A boolean value that indicates whether the region is the primary region or a secondary region.
*/
@JvmName("viwabagugwybjdbr")
public suspend fun isPrimary(`value`: Boolean?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.isPrimary = mapped
}
/**
* @param value Name of the geo replicated region.
*/
@JvmName("admafacihncykgog")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): MHSMGeoReplicatedRegionArgs = MHSMGeoReplicatedRegionArgs(
isPrimary = isPrimary,
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy