ResourceSkuArgs

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

The billing information of the resource.

Constructors

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

Properties

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

Optional, integer. The unit count of the resource. 1 for Free_F1/Standard_S1/Premium_P1, 100 for Premium_P2 by default. If present, following values are allowed: Free_F1: 1; Standard_S1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium_P1: 1,2,3,4,5,6,7,8,9,10,20,30,40,50,60,70,80,90,100; Premium_P2: 100,200,300,400,500,600,700,800,900,1000;

Link copied to clipboard
val name: Output<String>

The name of the SKU. Required. Allowed values: Standard_S1, Free_F1, Premium_P1, Premium_P2

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

Optional tier of this particular SKU. 'Standard' or 'Free'. Basic is deprecated, use Standard instead.

Functions

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