skus
Creates, updates, deletes, gets or lists a skus
resource.
Overview
Name | skus |
Type | Resource |
Id | azure.data_explorer.skus |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The name of the SKU |
locationInfo | array | Locations and zones |
locations | array | The set of locations that the SKU is available |
resourceType | string | The resource type |
restrictions | array | The restrictions because of which SKU cannot be used |
tier | string | The tier of the SKU |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | location, subscriptionId | Lists 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 }}';