SkuArgs

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

SKU parameters supplied to the create Redis operation.

Constructors

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

Properties

Link copied to clipboard
val capacity: Output<Int>

The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).

Link copied to clipboard
val family: Output<Either<String, SkuFamily>>

The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).

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

The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)

Functions

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