kusto_pools_skus_by_resources
Creates, updates, deletes, gets or lists a kusto_pools_skus_by_resources
resource.
Overview
Name | kusto_pools_skus_by_resources |
Type | Resource |
Id | azure.synapse.kusto_pools_skus_by_resources |
Fields
The following fields are returned by SELECT
queries:
- list
OK.
Name | Datatype | Description |
---|---|---|
capacity | object | The number of instances of the cluster. |
resourceType | string | Resource Namespace and Type. |
sku | object | The SKU details. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | workspaceName , kustoPoolName , subscriptionId , resourceGroupName | Returns the SKUs available for the provided 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 |
---|---|---|
kustoPoolName | string | The name of the Kusto pool. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string | The ID of the target subscription. |
workspaceName | string | The name of the workspace. |
SELECT
examples
- list
Returns the SKUs available for the provided resource.
SELECT
capacity,
resourceType,
sku
FROM azure.synapse.kusto_pools_skus_by_resources
WHERE workspaceName = '{{ workspaceName }}' -- required
AND kustoPoolName = '{{ kustoPoolName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
;