PostgresInstanceSkuResponse

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

The resource model definition representing SKU for Azure Database for PostgresSQL - Azure Arc

Constructors

Link copied to clipboard
constructor(capacity: Int? = null, dev: Boolean? = 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 dev: Boolean? = null

Whether dev/test is enabled. When the dev field is set to true, the resource is used for dev/test purpose.

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. 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.