SkuArgs

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

An ARM Resource SKU.

Constructors

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

Properties

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

Capacity of the particular SKU.

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

If the service has different generations of hardware, for the same SKU, then that can be captured here.

Link copied to clipboard
val name: Output<String>

The name of the SKU, typically, a letter + Number code, e.g. P3.

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

Size of the particular SKU

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

The tier or edition of the particular SKU, e.g. Basic, Premium.

Functions

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