SkuResponse

data class SkuResponse(val capacity: Int? = null, val family: String? = null, val name: String, val size: String? = null, val tier: String? = null)

The resource model definition representing SKU

Constructors

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

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val capacity: Int? = null

If the SKU supports scale out/in then the capacity integer should be included. If scale out/in is not possible for the resource this may be omitted.

Link copied to clipboard
val family: String? = null

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

Link copied to clipboard

The name of the SKU. Ex - P3. It is typically a letter+number code

Link copied to clipboard
val size: String? = null

The SKU size. When the name field is the combination of tier and some other value, this would be the standalone code.

Link copied to clipboard
val tier: String? = null

This field is required to be implemented by the Resource Provider if the service has more than one tier, but is not required on a PUT.