usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.purview.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource Id |
name | object | Quota name |
currentValue | integer | Current usage quota value |
limit | integer | Usage quota limit |
unit | string | Quota usage unit. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | location, subscriptionId | Get the usage quota configuration |
SELECT
examples
Get the usage quota configuration
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.purview.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';