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
- vw_capacities_details
- capacities_details
Name | Datatype | Description |
---|---|---|
id | text | An identifier that represents the PowerBI Dedicated resource. |
name | text | The name of the PowerBI Dedicated resource. |
administration | text | field from the properties object |
dedicatedCapacityName | text | field from the properties object |
friendly_name | text | field from the properties object |
location | text | Location of the PowerBI Dedicated resource. |
mode | text | field from the properties object |
provisioning_state | text | field from the properties object |
resourceGroupName | text | field from the properties object |
sku | text | Represents the SKU name and Azure pricing tier for PowerBI Dedicated capacity resource. |
state | text | field from the properties object |
subscriptionId | text | field from the properties object |
system_data | text | field from the properties object |
tags | text | Key-value pairs of additional resource provisioning properties. |
tenant_id | text | field from the properties object |
type | text | The type of the PowerBI Dedicated resource. |
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 Dedicated Capacity resource. |
sku | object | Represents the SKU name and Azure pricing tier for 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
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | dedicatedCapacityName, resourceGroupName, subscriptionId | Gets details about the specified dedicated capacity. |
SELECT
examples
Gets details about the specified dedicated capacity.
- vw_capacities_details
- capacities_details
SELECT
id,
name,
administration,
dedicatedCapacityName,
friendly_name,
location,
mode,
provisioning_state,
resourceGroupName,
sku,
state,
subscriptionId,
system_data,
tags,
tenant_id,
type
FROM azure.powerbi_dedicated.vw_capacities_details
WHERE dedicatedCapacityName = '{{ dedicatedCapacityName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
location,
properties,
sku,
systemData,
tags,
type
FROM azure.powerbi_dedicated.capacities_details
WHERE dedicatedCapacityName = '{{ dedicatedCapacityName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';