Skip to main content

capacities_details

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

Overview

Namecapacities_details
TypeResource
Idazure.powerbi_dedicated.capacities_details

Fields

The following fields are returned by SELECT queries:

OK. The operation was successful.

NameDatatypeDescription
idstringAn identifier that represents the PowerBI Dedicated resource.
namestringThe name of the PowerBI Dedicated resource.
locationstringLocation of the PowerBI Dedicated resource.
propertiesobjectProperties of the provision operation request.
skuobjectThe SKU of the PowerBI Dedicated capacity resource.
systemDataobjectMetadata pertaining to creation and last modification of the resource.
tagsobjectKey-value pairs of additional resource provisioning properties.
typestringThe type of the PowerBI Dedicated resource.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectresourceGroupName, dedicatedCapacityName, subscriptionIdGets 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.

NameDatatypeDescription
dedicatedCapacityNamestringThe name of the dedicated capacity. It must be a minimum of 3 characters, and a maximum of 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

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
;