Package version:

Describes Storage Resource Usage.

interface Usage {
    currentValue?: number;
    limit?: number;
    name?: UsageName;
    unit?: UsageUnit;
}

Properties

currentValue?: number

Gets the current count of the allocated resources in the subscription. NOTE: This property will not be serialized. It can only be populated by the server.

limit?: number

Gets the maximum count of the resources that can be allocated in the subscription. NOTE: This property will not be serialized. It can only be populated by the server.

name?: UsageName

Gets the name of the type of usage. NOTE: This property will not be serialized. It can only be populated by the server.

unit?: UsageUnit

Gets the unit of measurement. NOTE: This property will not be serialized. It can only be populated by the server.