ResourceSkuArgs

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

The SKU of a resource.

Constructors

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

Properties

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

The scale-out capacity of the resource. 1 is 1x, 2 is 2x, etc. This impacts the quantities and cost of any commitment plan resource.

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

The SKU name. Along with tier, uniquely identifies the SKU.

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

The SKU tier. Along with name, uniquely identifies the SKU.

Functions

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