capacities_details
Creates, updates, deletes, gets or lists a capacities_details
resource.
Overview
Name | capacities_details |
Type | Resource |
Id | azure.powerbi_dedicated.capacities_details |
Fields
The following fields are returned by SELECT
queries:
- get
OK. The operation was successful.
Name | Datatype | Description |
---|---|---|
id | string | An identifier that represents the PowerBI Dedicated resource. |
name | string | The name of the PowerBI Dedicated resource. |
location | string | Location of the PowerBI Dedicated resource. |
properties | object | Properties of the provision operation request. |
sku | object | The SKU of the PowerBI Dedicated capacity resource. |
systemData | object | Metadata pertaining to creation and last modification of the resource. |
tags | object | Key-value pairs of additional resource provisioning properties. |
type | string | The type of the PowerBI Dedicated resource. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | resourceGroupName , dedicatedCapacityName , subscriptionId | Gets details about the specified dedicated capacity. |
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 |
---|---|---|
dedicatedCapacityName | string | The name of the dedicated capacity. It must be a minimum of 3 characters, and a maximum of 63. |
resourceGroupName | string | The 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. |
subscriptionId | string | A unique identifier for a Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. |
SELECT
examples
- get
Gets details about the specified dedicated capacity.
SELECT
id,
name,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.powerbi_dedicated.capacities_details
WHERE resourceGroupName = '{{ resourceGroupName }}' -- required
AND dedicatedCapacityName = '{{ dedicatedCapacityName }}' -- required
AND subscriptionId = '{{ subscriptionId }}' -- required
;