skus
Creates, updates, deletes, gets or lists a skus resource.
Overview
| Name | skus |
| Type | Resource |
| Id | azure.kusto.skus |
Fields
The following fields are returned by SELECT queries:
- list
| 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
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | location, subscription_id | Lists 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.
| Name | Datatype | Description |
|---|---|---|
location | string | The location name. Required. |
subscription_id | string |
SELECT examples
- list
Lists eligible region SKUs for Kusto resource provider by Azure region.
SELECT
name,
locationInfo,
locations,
resourceType,
restrictions,
tier
FROM azure.kusto.skus
WHERE location = '{{ location }}' -- required
AND subscription_id = '{{ subscription_id }}' -- required
;