Skip to main content

usage_by_subscription_skus

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

Overview

Nameusage_by_subscription_skus
TypeResource
Idazure.search.usage_by_subscription_skus

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
getSELECTlocation, skuName, subscriptionIdGets the quota usage for a search sku in the given subscription.

SELECT examples

Gets the quota usage for a search sku in the given subscription.

SELECT
id,
name,
currentValue,
limit,
unit
FROM azure.search.usage_by_subscription_skus
WHERE location = '{{ location }}'
AND skuName = '{{ skuName }}'
AND subscriptionId = '{{ subscriptionId }}';