Skip to main content

capacities_skus

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

Overview

Namecapacities_skus
TypeResource
Idazure.fabric.capacities_skus

Fields

The following fields are returned by SELECT queries:

The request has succeeded.

NameDatatypeDescription
namestringThe SKU's name
locationsarrayThe list of available locations for the SKU
resourceTypestringThe resource type

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionIdList eligible SKUs for Microsoft Fabric 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
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

List eligible SKUs for Microsoft Fabric resource provider

SELECT
name,
locations,
resourceType
FROM azure.fabric.capacities_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;