usage_by_subscription_skus
Creates, updates, deletes, gets or lists a usage_by_subscription_skus
resource.
Overview
Name | usage_by_subscription_skus |
Type | Resource |
Id | azure.search.usage_by_subscription_skus |
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 |
---|---|---|---|
get | SELECT | location, skuName, subscriptionId | Gets 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 }}';