![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.providerhub.kotlin.inputs.SkuLocationInfoArgs.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.providerhub.kotlin.inputs
import com.pulumi.azurenative.providerhub.inputs.SkuLocationInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
*
* @property extendedLocations
* @property location
* @property type
* @property zoneDetails
* @property zones
*/
public data class SkuLocationInfoArgs(
public val extendedLocations: Output>? = null,
public val location: Output,
public val type: Output? = null,
public val zoneDetails: Output>? = null,
public val zones: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.providerhub.inputs.SkuLocationInfoArgs =
com.pulumi.azurenative.providerhub.inputs.SkuLocationInfoArgs.builder()
.extendedLocations(extendedLocations?.applyValue({ args0 -> args0.map({ args0 -> args0 }) }))
.location(location.applyValue({ args0 -> args0 }))
.type(type?.applyValue({ args0 -> args0 }))
.zoneDetails(
zoneDetails?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.zones(zones?.applyValue({ args0 -> args0.map({ args0 -> args0 }) })).build()
}
/**
* Builder for [SkuLocationInfoArgs].
*/
@PulumiTagMarker
public class SkuLocationInfoArgsBuilder internal constructor() {
private var extendedLocations: Output>? = null
private var location: Output? = null
private var type: Output? = null
private var zoneDetails: Output>? = null
private var zones: Output>? = null
/**
* @param value
*/
@JvmName("dutbtpmknjtceujl")
public suspend fun extendedLocations(`value`: Output>) {
this.extendedLocations = value
}
@JvmName("ycrjapykudkqyyfv")
public suspend fun extendedLocations(vararg values: Output) {
this.extendedLocations = Output.all(values.asList())
}
/**
* @param values
*/
@JvmName("wdlinnxyejcnekup")
public suspend fun extendedLocations(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy