Skip to main content

usages

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

Overview

Nameusages
TypeResource
Idazure.search.usages

Fields

NameDatatypeDescription
idstringThe resource ID of the quota usage SKU endpoint for Microsoft.Search provider.
nameobjectThe name of the SKU supported by Azure AI Search.
currentValueintegerThe currently used up value for the particular search SKU.
limitintegerThe quota limit for the particular search SKU.
unitstringThe unit of measurement for the search SKU.

Methods

NameAccessible byRequired ParamsDescription
list_by_subscriptionSELECTlocation, subscriptionIdGet 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 }}';