com.pulumi.azurenative.compute.kotlin.inputs.PlanArgs.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azurenative.compute.kotlin.inputs
import com.pulumi.azurenative.compute.inputs.PlanArgs.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
/**
* Specifies information about the marketplace image used to create the virtual machine. This element is only used for marketplace images. Before you can use a marketplace image from an API, you must enable the image for programmatic use. In the Azure portal, find the marketplace image that you want to use and then click **Want to deploy programmatically, Get Started ->**. Enter any required information and then click **Save**.
* @property name The plan ID.
* @property product Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
* @property promotionCode The promotion code.
* @property publisher The publisher ID.
*/
public data class PlanArgs(
public val name: Output? = null,
public val product: Output? = null,
public val promotionCode: Output? = null,
public val publisher: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.compute.inputs.PlanArgs =
com.pulumi.azurenative.compute.inputs.PlanArgs.builder()
.name(name?.applyValue({ args0 -> args0 }))
.product(product?.applyValue({ args0 -> args0 }))
.promotionCode(promotionCode?.applyValue({ args0 -> args0 }))
.publisher(publisher?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [PlanArgs].
*/
@PulumiTagMarker
public class PlanArgsBuilder internal constructor() {
private var name: Output? = null
private var product: Output? = null
private var promotionCode: Output? = null
private var publisher: Output? = null
/**
* @param value The plan ID.
*/
@JvmName("qfackxxgcuoyaedk")
public suspend fun name(`value`: Output) {
this.name = value
}
/**
* @param value Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
*/
@JvmName("peivjnaululxdojr")
public suspend fun product(`value`: Output) {
this.product = value
}
/**
* @param value The promotion code.
*/
@JvmName("rbqyjjdilhqqelss")
public suspend fun promotionCode(`value`: Output) {
this.promotionCode = value
}
/**
* @param value The publisher ID.
*/
@JvmName("oefqskifpvoweemf")
public suspend fun publisher(`value`: Output) {
this.publisher = value
}
/**
* @param value The plan ID.
*/
@JvmName("bmdlixnfbnuybpsq")
public suspend fun name(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.name = mapped
}
/**
* @param value Specifies the product of the image from the marketplace. This is the same value as Offer under the imageReference element.
*/
@JvmName("uaxqwfncibhjaghv")
public suspend fun product(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.product = mapped
}
/**
* @param value The promotion code.
*/
@JvmName("meqpshwrytdpnxnx")
public suspend fun promotionCode(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.promotionCode = mapped
}
/**
* @param value The publisher ID.
*/
@JvmName("uvdisfbtxkuvyxna")
public suspend fun publisher(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.publisher = mapped
}
internal fun build(): PlanArgs = PlanArgs(
name = name,
product = product,
promotionCode = promotionCode,
publisher = publisher,
)
}