Skip to main content

usages

Creates, updates, deletes, gets or lists a usages resource.

Overview

Nameusages
TypeResource
Idazure.lab_services.usages

Fields

The following fields are returned by SELECT queries:

The request was successful; a list of usages is returned

NameDatatypeDescription
idstringThe fully qualified arm resource id.
nameobjectThe name.
currentValueinteger (int64)The current usage.
limitinteger (int64)The limit integer.
unitstringThe unit details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_by_locationselectReturns list of usage per SKU family for the specified subscription in the specified region.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription

SELECT examples

Returns list of usage per SKU family for the specified subscription in the specified region.

SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.lab_services.usages
;