Share via


Microsoft.Fabric capacities 2025-01-15-preview

Bicep resource definition

The capacities resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Fabric/capacities resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Fabric/capacities@2025-01-15-preview' = {
  location: 'string'
  name: 'string'
  properties: {
    administration: {
      members: [
        'string'
      ]
    }
  }
  sku: {
    name: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.Fabric/capacities

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 3
Max length = 63
Pattern = ^[a-z][a-z0-9]*$ (required)
properties The resource-specific properties for this resource. FabricCapacityProperties (required)
sku The SKU details RpSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates

CapacityAdministration

Name Description Value
members An array of administrator user identities. string[] (required)

FabricCapacityProperties

Name Description Value
administration The capacity administration CapacityAdministration (required)

RpSku

Name Description Value
name The name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. 'Fabric' (required)

TrackedResourceTags

Name Description Value

Usage Examples

Azure Verified Modules

The following Azure Verified Modules can be used to deploy this resource type.

Module Description
Fabric AVM Resource Module for Fabric

ARM template resource definition

The capacities resource type can be deployed with operations that target:

For a list of changed properties in each API version, see change log.

Resource format

To create a Microsoft.Fabric/capacities resource, add the following JSON to your template.

{
  "type": "Microsoft.Fabric/capacities",
  "apiVersion": "2025-01-15-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "administration": {
      "members": [ "string" ]
    }
  },
  "sku": {
    "name": "string",
    "tier": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Fabric/capacities

Name Description Value
apiVersion The api version '2025-01-15-preview'
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 3
Max length = 63
Pattern = ^[a-z][a-z0-9]*$ (required)
properties The resource-specific properties for this resource. FabricCapacityProperties (required)
sku The SKU details RpSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Fabric/capacities'

CapacityAdministration

Name Description Value
members An array of administrator user identities. string[] (required)

FabricCapacityProperties

Name Description Value
administration The capacity administration CapacityAdministration (required)

RpSku

Name Description Value
name The name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. 'Fabric' (required)

TrackedResourceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

The capacities 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.Fabric/capacities resource, add the following Terraform to your template.

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Fabric/capacities@2025-01-15-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      administration = {
        members = [
          "string"
        ]
      }
    }
    sku = {
      name = "string"
      tier = "string"
    }
  }
}

Property Values

Microsoft.Fabric/capacities

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string

Constraints:
Min length = 3
Max length = 63
Pattern = ^[a-z][a-z0-9]*$ (required)
properties The resource-specific properties for this resource. FabricCapacityProperties (required)
sku The SKU details RpSku (required)
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Fabric/capacities@2025-01-15-preview"

CapacityAdministration

Name Description Value
members An array of administrator user identities. string[] (required)

FabricCapacityProperties

Name Description Value
administration The capacity administration CapacityAdministration (required)

RpSku

Name Description Value
name The name of the SKU level. string (required)
tier The name of the Azure pricing tier to which the SKU applies. 'Fabric' (required)

TrackedResourceTags

Name Description Value