SkuArgs

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

SKU parameters supplied to the create namespace operation

Constructors

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

Properties

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

The Event Hubs throughput units for Basic or Standard tiers, where value should be 0 to 20 throughput units. The Event Hubs premium units for Premium tier, where value should be 0 to 10 premium units.

Link copied to clipboard
val name: Output<Either<String, SkuName>>

Name of this SKU.

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

The billing tier of this particular SKU.

Functions

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