![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.workloadssap.kotlin.inputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.workloadssap.kotlin.inputs
import com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs.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
/**
*
* @property offer Specifies the offer of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
* @property publisher The publisher of the Image. Possible values are `RedHat` and `SUSE`. Changing this forces a new resource to be created.
* @property sku The SKU of the Image. Changing this forces a new resource to be created.
* @property version Specifies the version of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
*/
public data class
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs(
public val offer: Output,
public val publisher: Output,
public val sku: Output,
public val version: Output,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs =
com.pulumi.azure.workloadssap.inputs.ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs.builder()
.offer(offer.applyValue({ args0 -> args0 }))
.publisher(publisher.applyValue({ args0 -> args0 }))
.sku(sku.applyValue({ args0 -> args0 }))
.version(version.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs].
*/
@PulumiTagMarker
public class
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgsBuilder
internal constructor() {
private var offer: Output? = null
private var publisher: Output? = null
private var sku: Output? = null
private var version: Output? = null
/**
* @param value Specifies the offer of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
*/
@JvmName("xuwnuqvhccqnlwym")
public suspend fun offer(`value`: Output) {
this.offer = value
}
/**
* @param value The publisher of the Image. Possible values are `RedHat` and `SUSE`. Changing this forces a new resource to be created.
*/
@JvmName("dhoxkpksdhkjoxgq")
public suspend fun publisher(`value`: Output) {
this.publisher = value
}
/**
* @param value The SKU of the Image. Changing this forces a new resource to be created.
*/
@JvmName("rwuyeabfakfemoto")
public suspend fun sku(`value`: Output) {
this.sku = value
}
/**
* @param value Specifies the version of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
*/
@JvmName("oqkcaixmrqngfdqb")
public suspend fun version(`value`: Output) {
this.version = value
}
/**
* @param value Specifies the offer of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
*/
@JvmName("djsclddpdyqwtifl")
public suspend fun offer(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.offer = mapped
}
/**
* @param value The publisher of the Image. Possible values are `RedHat` and `SUSE`. Changing this forces a new resource to be created.
*/
@JvmName("wdnqcfudhiagkmgf")
public suspend fun publisher(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.publisher = mapped
}
/**
* @param value The SKU of the Image. Changing this forces a new resource to be created.
*/
@JvmName("yunmcpeeongptdqi")
public suspend fun sku(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.sku = mapped
}
/**
* @param value Specifies the version of the platform image or marketplace image used to create the virtual machine. Changing this forces a new resource to be created.
*/
@JvmName("hdmqowogrexxchoh")
public suspend fun version(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.version = mapped
}
internal fun build(): ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs =
ThreeTierVirtualInstanceThreeTierConfigurationCentralServerConfigurationVirtualMachineConfigurationImageArgs(
offer = offer ?: throw PulumiNullFieldException("offer"),
publisher = publisher ?: throw PulumiNullFieldException("publisher"),
sku = sku ?: throw PulumiNullFieldException("sku"),
version = version ?: throw PulumiNullFieldException("version"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy