usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.purview.usages |
Fields
The following fields are returned by SELECT
queries:
- get
Name | Datatype | Description |
---|---|---|
id | string | Fully qualified resource Id |
name | object | Quota name |
currentValue | integer (int32) | Current usage quota value |
limit | integer (int32) | Usage quota limit |
unit | string | Quota usage unit. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | subscriptionId , location | api-version , $filter | Get the usage quota configuration |
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.
Name | Datatype | Description |
---|---|---|
location | string | The region. |
subscriptionId | string | The subscription identifier |
$filter | string | The filter, currently unused. |
api-version | string | The api version to use. |
SELECT
examples
- get
Get the usage quota configuration
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.purview.usages
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
AND api-version = '{{ api-version }}'
AND $filter = '{{ $filter }}'
;