![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.web.kotlin.inputs.ExtendedLocationArgs.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.web.kotlin.inputs
import com.pulumi.azurenative.web.inputs.ExtendedLocationArgs.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
/**
* Extended Location.
* @property name Name of extended location.
*/
public data class ExtendedLocationArgs(
public val name: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.web.inputs.ExtendedLocationArgs =
com.pulumi.azurenative.web.inputs.ExtendedLocationArgs.builder()
.name(name?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ExtendedLocationArgs].
*/
@PulumiTagMarker
public class ExtendedLocationArgsBuilder internal constructor() {
private var name: Output? = null
/**
* @param value Name of extended location.
*/
@JvmName("paemxdnucafdmncq")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Name of extended location.
*/
@JvmName("pygndyexbtjtplpw")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
internal fun build(): ExtendedLocationArgs = ExtendedLocationArgs(
name = name,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy