Skip to main content

usages

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

Overview

Nameusages
TypeResource
Idazure.network.usages

Fields

NameDatatypeDescription
idstringResource identifier.
nameobjectThe usage names.
currentValueintegerThe current value of the usage.
limitintegerThe limit of usage.
unitstringAn enum describing the unit of measurement.

Methods

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdList network usages for a subscription.

SELECT examples

List network usages for a subscription.

SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.network.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';