Skip to main content

capacities_skus_for_capacities

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

Overview

Namecapacities_skus_for_capacities
TypeResource
Idazure.powerbi_dedicated.capacities_skus_for_capacities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
resourceTypestringThe resource type
skuobjectRepresents the SKU name and Azure pricing tier for PowerBI Dedicated capacity resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectresourceGroupName, dedicatedCapacityName, subscriptionIdLists eligible SKUs for a PowerBI Dedicated 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
dedicatedCapacityNamestringThe name of the Dedicated capacity. It must be at least 3 characters in length, and no more than 63.
resourceGroupNamestringThe name of the Azure Resource group of which a given PowerBIDedicated capacity is part. This name must be at least 1 character in length, and no more than 90.
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 a PowerBI Dedicated resource.

SELECT
resourceType,
sku
FROM azure.powerbi_dedicated.capacities_skus_for_capacities
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND dedicatedCapacityName = '{{ dedicatedCapacityName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;