capacities_skus
Creates, updates, deletes, gets or lists a capacities_skus
resource.
Overview
Name | capacities_skus |
Type | Resource |
Id | azure.powerbi_dedicated.capacities_skus |
Fields
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
name | string | Name of the SKU level. |
capacity | integer (int32) | The capacity of the SKU. |
tier | string | The name of the Azure pricing tier to which the SKU applies. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Lists 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string | A unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- list
Lists eligible SKUs for PowerBI Dedicated resource provider.
SELECT
name,
capacity,
tier
FROM azure.powerbi_dedicated.capacities_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;