Skip to main content

skus

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

Overview

Nameskus
TypeResource
Idazure.data_explorer.skus

Fields

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

NameAccessible byRequired ParamsDescription
listSELECTlocation, subscriptionIdLists eligible region SKUs for Kusto resource provider by Azure region.

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 location = '{{ location }}'
AND subscriptionId = '{{ subscriptionId }}';