![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.inputs.GroupContainerGpuArgs.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.containerservice.kotlin.inputs
import com.pulumi.azure.containerservice.inputs.GroupContainerGpuArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property count
* @property sku Specifies the sku of the Container Group. Possible values are `Confidential`, `Dedicated` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created.
*/
public data class GroupContainerGpuArgs(
public val count: Output? = null,
public val sku: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.containerservice.inputs.GroupContainerGpuArgs =
com.pulumi.azure.containerservice.inputs.GroupContainerGpuArgs.builder()
.count(count?.applyValue({ args0 -> args0 }))
.sku(sku?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [GroupContainerGpuArgs].
*/
@PulumiTagMarker
public class GroupContainerGpuArgsBuilder internal constructor() {
private var count: Output? = null
private var sku: Output? = null
/**
* @param value
*/
@JvmName("dgfcbowpnbuwdjyj")
public suspend fun count(`value`: Output) {
this.count = value
}
/**
* @param value Specifies the sku of the Container Group. Possible values are `Confidential`, `Dedicated` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created.
*/
@JvmName("ufrncrxaovafhtbw")
public suspend fun sku(`value`: Output) {
this.sku = value
}
/**
* @param value
*/
@JvmName("onbwtmogsywhpnuw")
public suspend fun count(`value`: Int?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.count = mapped
}
/**
* @param value Specifies the sku of the Container Group. Possible values are `Confidential`, `Dedicated` and `Standard`. Defaults to `Standard`. Changing this forces a new resource to be created.
*/
@JvmName("kfexrtpubwrxsxab")
public suspend fun sku(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.sku = mapped
}
internal fun build(): GroupContainerGpuArgs = GroupContainerGpuArgs(
count = count,
sku = sku,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy