![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.lab.kotlin.outputs.LabVirtualMachineSku.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.lab.kotlin.outputs
import kotlin.Int
import kotlin.String
import kotlin.Suppress
/**
*
* @property capacity The capacity for the SKU. Possible values are between `0` and `400`.
* > **NOTE:** Once `active_directory_group_id` is enabled, `capacity` wouldn't take effect, and it would be automatically set to the number of members in AAD Group by service API. So it has to use `ignore_changes` to avoid the difference of tf plan.
* @property name The name of the SKU. Changing this forces a new resource to be created.
*/
public data class LabVirtualMachineSku(
public val capacity: Int,
public val name: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.lab.outputs.LabVirtualMachineSku): LabVirtualMachineSku = LabVirtualMachineSku(
capacity = javaType.capacity(),
name = javaType.name(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy