Microsoft.PowerBIDedicated capacities 2017-10-01
- Artikkeli
-
-
Bicep resource definition
The capacities resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.PowerBIDedicated/capacities resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.PowerBIDedicated/capacities@2017-10-01' = {
name: 'string'
location: 'string'
tags: {
tagName1: 'tagValue1'
tagName2: 'tagValue2'
}
sku: {
capacity: int
name: 'string'
tier: 'PBIE_Azure'
}
properties: {
administration: {
members: [
'string'
]
}
}
}
Property values
capacities
Name |
Description |
Value |
name |
The resource name |
string (required) |
location |
Location of the PowerBI Dedicated resource. |
string (required) |
tags |
Key-value pairs of additional resource provisioning properties. |
Dictionary of tag names and values. See Tags in templates |
sku |
The SKU of the PowerBI Dedicated resource. |
ResourceSku (required) |
properties |
Properties of the provision operation request. |
DedicatedCapacityProperties |
DedicatedCapacityProperties
DedicatedCapacityAdministrators
Name |
Description |
Value |
members |
An array of administrator user identities. |
string[] |
ResourceSku
Name |
Description |
Value |
capacity |
The capacity of the SKU. |
int |
name |
Name of the SKU level. |
string (required) |
tier |
The name of the Azure pricing tier to which the SKU applies. |
'PBIE_Azure' |
Quickstart templates
The following quickstart templates deploy this resource type.
Template |
Description |
Create a Power BI Embedded capacity
|
This template creates a Power BI capacity in Azure, which simplifies how ISVs and developers use Power BI capabilities with embedded analytics. |
ARM template resource definition
The capacities resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.PowerBIDedicated/capacities resource, add the following JSON to your template.
{
"type": "Microsoft.PowerBIDedicated/capacities",
"apiVersion": "2017-10-01",
"name": "string",
"location": "string",
"tags": {
"tagName1": "tagValue1",
"tagName2": "tagValue2"
},
"sku": {
"capacity": "int",
"name": "string",
"tier": "PBIE_Azure"
},
"properties": {
"administration": {
"members": [ "string" ]
}
}
}
Property values
capacities
Name |
Description |
Value |
type |
The resource type |
'Microsoft.PowerBIDedicated/capacities' |
apiVersion |
The resource api version |
'2017-10-01' |
name |
The resource name |
string (required) |
location |
Location of the PowerBI Dedicated resource. |
string (required) |
tags |
Key-value pairs of additional resource provisioning properties. |
Dictionary of tag names and values. See Tags in templates |
sku |
The SKU of the PowerBI Dedicated resource. |
ResourceSku (required) |
properties |
Properties of the provision operation request. |
DedicatedCapacityProperties |
DedicatedCapacityProperties
DedicatedCapacityAdministrators
Name |
Description |
Value |
members |
An array of administrator user identities. |
string[] |
ResourceSku
Name |
Description |
Value |
capacity |
The capacity of the SKU. |
int |
name |
Name of the SKU level. |
string (required) |
tier |
The name of the Azure pricing tier to which the SKU applies. |
'PBIE_Azure' |
Quickstart templates
The following quickstart templates deploy this resource type.
Template |
Description |
Create a Power BI Embedded capacity
|
This template creates a Power BI capacity in Azure, which simplifies how ISVs and developers use Power BI capabilities with embedded analytics. |
The capacities resource type can be deployed to:
For a list of changed properties in each API version, see change log.
To create a Microsoft.PowerBIDedicated/capacities resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.PowerBIDedicated/capacities@2017-10-01"
name = "string"
location = "string"
parent_id = "string"
tags = {
tagName1 = "tagValue1"
tagName2 = "tagValue2"
}
body = jsonencode({
properties = {
administration = {
members = [
"string"
]
}
}
sku = {
capacity = int
name = "string"
tier = "PBIE_Azure"
}
})
}
Property values
capacities
Name |
Description |
Value |
type |
The resource type |
"Microsoft.PowerBIDedicated/capacities@2017-10-01" |
name |
The resource name |
string (required) |
location |
Location of the PowerBI Dedicated resource. |
string (required) |
parent_id |
To deploy to a resource group, use the ID of that resource group. |
string (required) |
tags |
Key-value pairs of additional resource provisioning properties. |
Dictionary of tag names and values. |
sku |
The SKU of the PowerBI Dedicated resource. |
ResourceSku (required) |
properties |
Properties of the provision operation request. |
DedicatedCapacityProperties |
DedicatedCapacityProperties
DedicatedCapacityAdministrators
Name |
Description |
Value |
members |
An array of administrator user identities. |
string[] |
ResourceSku
Name |
Description |
Value |
capacity |
The capacity of the SKU. |
int |
name |
Name of the SKU level. |
string (required) |
tier |
The name of the Azure pricing tier to which the SKU applies. |
"PBIE_Azure" |