capacities_skus
Creates, updates, deletes, gets or lists a capacities_skus
resource.
Overview
Name | capacities_skus |
Type | Resource |
Id | azure.fabric.capacities_skus |
Fields
The following fields are returned by SELECT
queries:
- list
The request has succeeded.
Name | Datatype | Description |
---|---|---|
name | string | The SKU's name |
locations | array | The list of available locations for the SKU |
resourceType | string | The resource type |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | List 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.
Name | Datatype | Description |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
List eligible SKUs for Microsoft Fabric resource provider
SELECT
name,
locations,
resourceType
FROM azure.fabric.capacities_skus
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;