Skip to main content

kusto_pools_skus_by_resources

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

Overview

Namekusto_pools_skus_by_resources
TypeResource
Idazure.synapse.kusto_pools_skus_by_resources

Fields

The following fields are returned by SELECT queries:

OK.

NameDatatypeDescription
capacityobjectThe number of instances of the cluster.
resourceTypestringResource Namespace and Type.
skuobjectThe SKU details.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectworkspaceName, kustoPoolName, subscriptionId, resourceGroupNameReturns 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.

NameDatatypeDescription
kustoPoolNamestringThe name of the Kusto pool.
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstringThe ID of the target subscription.
workspaceNamestringThe name of the workspace.

SELECT examples

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
;