Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.data_explorer.skus

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
namestringThe name of the SKU
locationInfoarrayLocations and zones
locationsarrayThe set of locations that the SKU is available
resourceTypestringThe resource type
restrictionsarrayThe restrictions because of which SKU cannot be used
tierstringThe tier of the SKU

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, locationLists eligible region SKUs for Kusto resource provider by Azure region.

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.

NameDatatypeDescription
locationstringThe name of Azure region.
subscriptionIdstringThe ID of the target subscription.

SELECT examples

Lists eligible region SKUs for Kusto resource provider by Azure region.

SELECT
name,
locationInfo,
locations,
resourceType,
restrictions,
tier
FROM azure.data_explorer.skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND location = '{{ location }}' -- required
;