Microsoft.PowerBI workspaceCollections 2016-01-29

Bicep resource definition

The workspaceCollections resource type can be deployed to:

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' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  sku: {
    name: 'S1'
    tier: 'Standard'
  }
}

Property values

workspaceCollections

Name Description Value
name The resource name string (required)

Character limit: 3-63

Valid characters:
Alphanumerics and hyphens.

Can't start with hyphen. Can't use consecutive hyphens.
location Azure location string
tags Dictionary of {string} Dictionary of tag names and values. See Tags in templates
sku AzureSku

AzureSku

Name Description Value
name SKU name 'S1' (required)
tier SKU tier 'Standard' (required)

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create a PowerBI Workspace Collection using a template

Deploy to Azure
This template creates a PowerBI Workspace Collection

ARM template resource definition

The workspaceCollections resource type can be deployed to:

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",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "sku": {
    "name": "S1",
    "tier": "Standard"
  }
}

Property values

workspaceCollections

Name Description Value
type The resource type 'Microsoft.PowerBI/workspaceCollections'
apiVersion The resource api version '2016-01-29'
name The resource name string (required)

Character limit: 3-63

Valid characters:
Alphanumerics and hyphens.

Can't start with hyphen. Can't use consecutive hyphens.
location Azure location string
tags Dictionary of {string} Dictionary of tag names and values. See Tags in templates
sku AzureSku

AzureSku

Name Description Value
name SKU name 'S1' (required)
tier SKU tier 'Standard' (required)

Quickstart templates

The following quickstart templates deploy this resource type.

Template Description
Create a PowerBI Workspace Collection using a template

Deploy to Azure
This template creates a PowerBI Workspace Collection

Terraform (AzAPI provider) resource definition

The workspaceCollections resource type can be deployed to:

  • 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"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  body = jsonencode({
    sku = {
      name = "S1"
      tier = "Standard"
    }
  })
}

Property values

workspaceCollections

Name Description Value
type The resource type "Microsoft.PowerBI/workspaceCollections@2016-01-29"
name The resource name string (required)

Character limit: 3-63

Valid characters:
Alphanumerics and hyphens.

Can't start with hyphen. Can't use consecutive hyphens.
location Azure location string
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Dictionary of {string} Dictionary of tag names and values.
sku AzureSku

AzureSku

Name Description Value
name SKU name "S1" (required)
tier SKU tier "Standard" (required)