![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.avs.kotlin.inputs.AddonHcxPropertiesArgs.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.avs.kotlin.inputs
import com.pulumi.azurenative.avs.inputs.AddonHcxPropertiesArgs.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 kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* The properties of an HCX addon
* @property addonType The type of private cloud addon
* Expected value is 'HCX'.
* @property offer The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
*/
public data class AddonHcxPropertiesArgs(
public val addonType: Output,
public val offer: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.avs.inputs.AddonHcxPropertiesArgs =
com.pulumi.azurenative.avs.inputs.AddonHcxPropertiesArgs.builder()
.addonType(addonType.applyValue({ args0 -> args0 }))
.offer(offer.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [AddonHcxPropertiesArgs].
*/
@PulumiTagMarker
public class AddonHcxPropertiesArgsBuilder internal constructor() {
private var addonType: Output? = null
private var offer: Output? = null
/**
* @param value The type of private cloud addon
* Expected value is 'HCX'.
*/
@JvmName("rqlnikexmcvfnxng")
public suspend fun addonType(`value`: Output) {
this.addonType = value
}
/**
* @param value The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
*/
@JvmName("rmpjbvneqcedbjow")
public suspend fun offer(`value`: Output) {
this.offer = value
}
/**
* @param value The type of private cloud addon
* Expected value is 'HCX'.
*/
@JvmName("livdbgnhnelwktma")
public suspend fun addonType(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.addonType = mapped
}
/**
* @param value The HCX offer, example VMware MaaS Cloud Provider (Enterprise)
*/
@JvmName("tdiiihtdxtofgkex")
public suspend fun offer(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.offer = mapped
}
internal fun build(): AddonHcxPropertiesArgs = AddonHcxPropertiesArgs(
addonType = addonType ?: throw PulumiNullFieldException("addonType"),
offer = offer ?: throw PulumiNullFieldException("offer"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy