![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.sql.kotlin.inputs.PartnerRegionInfoArgs.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.sql.kotlin.inputs
import com.pulumi.azurenative.sql.inputs.PartnerRegionInfoArgs.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
/**
* Partner region information for the failover group.
* @property location Geo location of the partner managed instances.
*/
public data class PartnerRegionInfoArgs(
public val location: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.sql.inputs.PartnerRegionInfoArgs =
com.pulumi.azurenative.sql.inputs.PartnerRegionInfoArgs.builder()
.location(location?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PartnerRegionInfoArgs].
*/
@PulumiTagMarker
public class PartnerRegionInfoArgsBuilder internal constructor() {
private var location: Output? = null
/**
* @param value Geo location of the partner managed instances.
*/
@JvmName("djftuvqtcqtrsxiv")
public suspend fun location(`value`: Output) {
this.location = value
}
/**
* @param value Geo location of the partner managed instances.
*/
@JvmName("nuqwleymiskptuou")
public suspend fun location(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.location = mapped
}
internal fun build(): PartnerRegionInfoArgs = PartnerRegionInfoArgs(
location = location,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy