usages
Creates, updates, deletes, gets or lists a usages
resource.
Overview
Name | usages |
Type | Resource |
Id | azure.search.usages |
Fields
Name | Datatype | Description |
---|---|---|
id | string | The resource ID of the quota usage SKU endpoint for Microsoft.Search provider. |
name | object | The name of the SKU supported by Azure AI Search. |
currentValue | integer | The currently used up value for the particular search SKU. |
limit | integer | The quota limit for the particular search SKU. |
unit | string | The unit of measurement for the search SKU. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_by_subscription | SELECT | location, subscriptionId | Get a list of all Azure AI Search quota usages across the subscription. |
SELECT
examples
Get a list of all Azure AI Search quota usages across the subscription.
SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.search.usages
WHERE location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';