SkuArgs

data class SkuArgs(val capacity: Output<Double>? = null, val name: Output<String>? = null, val tier: Output<String>? = null) : ConvertibleToJava<SkuArgs>

Describes a virtual machine scale set sku. NOTE: If the new VM SKU is not supported on the hardware the scale set is currently on, you need to deallocate the VMs in the scale set before you modify the SKU name.

Constructors

Link copied to clipboard
constructor(capacity: Output<Double>? = null, name: Output<String>? = null, tier: Output<String>? = null)

Properties

Link copied to clipboard
val capacity: Output<Double>? = null

Specifies the number of virtual machines in the scale set.

Link copied to clipboard
val name: Output<String>? = null

The sku name.

Link copied to clipboard
val tier: Output<String>? = null

Specifies the tier of virtual machines in a scale set.

Possible Values:

Standard

Basic

Functions

Link copied to clipboard
open override fun toJava(): SkuArgs