Package version:

Describes scaling information of a SKU.

interface SkuCapacity {
    allowedValues?: number[];
    default?: number;
    maximum?: number;
    minimum?: number;
    scaleType?: string;
}

Properties

allowedValues?: number[]

Specifies the valid streaming units a streaming job can scale to. NOTE: This property will not be serialized. It can only be populated by the server.

default?: number

Specifies the default streaming units that the streaming job can use. NOTE: This property will not be serialized. It can only be populated by the server.

maximum?: number

Specifies the maximum streaming units that the streaming job can use. NOTE: This property will not be serialized. It can only be populated by the server.

minimum?: number

Specifies the minimum streaming units that the streaming job can use. NOTE: This property will not be serialized. It can only be populated by the server.

scaleType?: string

The scale type applicable to the SKU. NOTE: This property will not be serialized. It can only be populated by the server.

Generated using TypeDoc