SkuArgs

data class SkuArgs(val capacity: Output<Int>, val name: Output<Either<String, SkuName>>) : ConvertibleToJava<SkuArgs>

The sku determines the type of environment, either Gen1 (S1 or S2) or Gen2 (L1). For Gen1 environments the sku determines the capacity of the environment, the ingress rate, and the billing rate.

Constructors

Link copied to clipboard
constructor(capacity: Output<Int>, name: Output<Either<String, SkuName>>)

Properties

Link copied to clipboard
val capacity: Output<Int>

The capacity of the sku. For Gen1 environments, this value can be changed to support scale out of environments after they have been created.

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

The name of this SKU.

Functions

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