kusto_pools_skus
Creates, updates, deletes, gets or lists a kusto_pools_skus resource.
Overview
| Name | kusto_pools_skus |
| Type | Resource |
| Id | azure.synapse.kusto_pools_skus |
Fields
The following fields are returned by SELECT queries:
- list
OK.
| 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 |
size | string | The size of the SKU |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list | select | subscriptionId | Lists eligible SKUs for Kusto Pool resource. |
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 |
|---|---|---|
subscriptionId | string | The ID of the target subscription. |
SELECT examples
- list
Lists eligible SKUs for Kusto Pool resource.
SELECT
name,
locationInfo,
locations,
resourceType,
restrictions,
size
FROM azure.synapse.kusto_pools_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;