Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The workspaceCollections resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.PowerBI/workspaceCollections resource, add the following Bicep to your template.
resource symbolicname 'Microsoft.PowerBI/workspaceCollections@2016-01-29' = {
location: 'string'
name: 'string'
sku: {
name: 'string'
tier: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
AzureSku
Name | Description | Value |
---|---|---|
name | SKU name | 'S1' (required) |
tier | SKU tier | 'Standard' (required) |
CreateWorkspaceCollectionRequestTags
Name | Description | Value |
---|
Microsoft.PowerBI/workspaceCollections
Name | Description | Value |
---|---|---|
location | Azure location | string |
name | The resource name | string (required) |
sku | AzureSku | |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
ARM template resource definition
The workspaceCollections resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.PowerBI/workspaceCollections resource, add the following JSON to your template.
{
"type": "Microsoft.PowerBI/workspaceCollections",
"apiVersion": "2016-01-29",
"name": "string",
"location": "string",
"sku": {
"name": "string",
"tier": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
AzureSku
Name | Description | Value |
---|---|---|
name | SKU name | 'S1' (required) |
tier | SKU tier | 'Standard' (required) |
CreateWorkspaceCollectionRequestTags
Name | Description | Value |
---|
Microsoft.PowerBI/workspaceCollections
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2016-01-29' |
location | Azure location | string |
name | The resource name | string (required) |
sku | AzureSku | |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.PowerBI/workspaceCollections' |
Usage Examples
Azure Quickstart Templates
The following Azure Quickstart templates deploy this resource type.
Template | Description |
---|---|
Create a PowerBI Workspace Collection using a template |
This template creates a PowerBI Workspace Collection |
Terraform (AzAPI provider) resource definition
The workspaceCollections resource type can be deployed with operations that target:
- Resource groups
For a list of changed properties in each API version, see change log.
Resource format
To create a Microsoft.PowerBI/workspaceCollections resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.PowerBI/workspaceCollections@2016-01-29"
name = "string"
parent_id = "string"
location = "string"
tags = {
{customized property} = "string"
}
body = {
sku = {
name = "string"
tier = "string"
}
}
}
Property Values
AzureSku
Name | Description | Value |
---|---|---|
name | SKU name | 'S1' (required) |
tier | SKU tier | 'Standard' (required) |
CreateWorkspaceCollectionRequestTags
Name | Description | Value |
---|
Microsoft.PowerBI/workspaceCollections
Name | Description | Value |
---|---|---|
location | Azure location | string |
name | The resource name | string (required) |
sku | AzureSku | |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.PowerBI/workspaceCollections@2016-01-29" |