usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.network.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Resource identifier. |
name | object | The usage names. |
currentValue | integer | The current value of the usage. |
limit | integer | The limit of usage. |
unit | string | An enum describing the unit of measurement. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | List 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 }}';