SkuArgs

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

SQL pool SKU

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

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 name: Output<String>? = null

The SKU name

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

The service tier

Functions

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