Skip to main content

capacities_skus

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

Overview

Namecapacities_skus
TypeResource
Idazure.powerbi_dedicated.capacities_skus

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringName of the SKU level.
capacityinteger (int32)The capacity of the SKU.
tierstringThe name of the Azure pricing tier to which the SKU applies.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdLists eligible SKUs for PowerBI Dedicated resource provider.

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
subscriptionIdstringA unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Lists eligible SKUs for PowerBI Dedicated resource provider.

SELECT
name,
capacity,
tier
FROM azure.powerbi_dedicated.capacities_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;