
com.pulumi.azure.lab.kotlin.outputs.LabVirtualMachineSku.kt Maven / Gradle / Ivy
@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