Share via


Microsoft.Synapse workspaces/kustoPools 2021-04-01-preview

Bicep resource definition

The workspaces/kustoPools 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.Synapse/workspaces/kustoPools resource, add the following Bicep to your template.

resource symbolicname 'Microsoft.Synapse/workspaces/kustoPools@2021-04-01-preview' = {
  parent: resourceSymbolicName
  location: 'string'
  name: 'string'
  properties: {
    engineType: 'string'
    workspaceUid: 'string'
  }
  sku: {
    capacity: int
    name: 'string'
    tier: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

Property Values

Microsoft.Synapse/workspaces/kustoPools

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string (required)
parent In Bicep, you can specify the parent resource for a child resource. You only need to add this property when the child resource is declared outside of the parent resource.

For more information, see Child resource outside parent resource.
Symbolic name for resource of type: workspaces
properties The kusto pool properties. KustoPoolProperties
sku The SKU of the kusto pool. AzureSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates

AzureSku

Name Description Value
capacity The number of instances of the cluster. int
name SKU name. 'Dev(No SLA)_Standard_D11_v2'
'Dev(No SLA)_Standard_E2a_v4'
'Standard_D11_v2'
'Standard_D12_v2'
'Standard_D13_v2'
'Standard_D14_v2'
'Standard_DS13_v2+1TB_PS'
'Standard_DS13_v2+2TB_PS'
'Standard_DS14_v2+3TB_PS'
'Standard_DS14_v2+4TB_PS'
'Standard_E16as_v4+3TB_PS'
'Standard_E16as_v4+4TB_PS'
'Standard_E16a_v4'
'Standard_E2a_v4'
'Standard_E4a_v4'
'Standard_E64i_v3'
'Standard_E80ids_v4'
'Standard_E8as_v4+1TB_PS'
'Standard_E8as_v4+2TB_PS'
'Standard_E8a_v4'
'Standard_L16s'
'Standard_L16s_v2'
'Standard_L4s'
'Standard_L8s'
'Standard_L8s_v2' (required)
tier SKU tier. 'Basic'
'Standard' (required)

KustoPoolProperties

Name Description Value
engineType The engine type 'V2'
'V3'
workspaceUid The workspace unique identifier. string

TrackedResourceTags

Name Description Value

ARM template resource definition

The workspaces/kustoPools 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.Synapse/workspaces/kustoPools resource, add the following JSON to your template.

{
  "type": "Microsoft.Synapse/workspaces/kustoPools",
  "apiVersion": "2021-04-01-preview",
  "name": "string",
  "location": "string",
  "properties": {
    "engineType": "string",
    "workspaceUid": "string"
  },
  "sku": {
    "capacity": "int",
    "name": "string",
    "tier": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

Property Values

Microsoft.Synapse/workspaces/kustoPools

Name Description Value
apiVersion The api version '2021-04-01-preview'
location The geo-location where the resource lives string (required)
name The resource name string (required)
properties The kusto pool properties. KustoPoolProperties
sku The SKU of the kusto pool. AzureSku (required)
tags Resource tags Dictionary of tag names and values. See Tags in templates
type The resource type 'Microsoft.Synapse/workspaces/kustoPools'

AzureSku

Name Description Value
capacity The number of instances of the cluster. int
name SKU name. 'Dev(No SLA)_Standard_D11_v2'
'Dev(No SLA)_Standard_E2a_v4'
'Standard_D11_v2'
'Standard_D12_v2'
'Standard_D13_v2'
'Standard_D14_v2'
'Standard_DS13_v2+1TB_PS'
'Standard_DS13_v2+2TB_PS'
'Standard_DS14_v2+3TB_PS'
'Standard_DS14_v2+4TB_PS'
'Standard_E16as_v4+3TB_PS'
'Standard_E16as_v4+4TB_PS'
'Standard_E16a_v4'
'Standard_E2a_v4'
'Standard_E4a_v4'
'Standard_E64i_v3'
'Standard_E80ids_v4'
'Standard_E8as_v4+1TB_PS'
'Standard_E8as_v4+2TB_PS'
'Standard_E8a_v4'
'Standard_L16s'
'Standard_L16s_v2'
'Standard_L4s'
'Standard_L8s'
'Standard_L8s_v2' (required)
tier SKU tier. 'Basic'
'Standard' (required)

KustoPoolProperties

Name Description Value
engineType The engine type 'V2'
'V3'
workspaceUid The workspace unique identifier. string

TrackedResourceTags

Name Description Value

Usage Examples

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Synapse/workspaces/kustoPools@2021-04-01-preview"
  name = "string"
  parent_id = "string"
  location = "string"
  tags = {
    {customized property} = "string"
  }
  body = {
    properties = {
      engineType = "string"
      workspaceUid = "string"
    }
    sku = {
      capacity = int
      name = "string"
      tier = "string"
    }
  }
}

Property Values

Microsoft.Synapse/workspaces/kustoPools

Name Description Value
location The geo-location where the resource lives string (required)
name The resource name string (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: workspaces
properties The kusto pool properties. KustoPoolProperties
sku The SKU of the kusto pool. AzureSku (required)
tags Resource tags Dictionary of tag names and values.
type The resource type "Microsoft.Synapse/workspaces/kustoPools@2021-04-01-preview"

AzureSku

Name Description Value
capacity The number of instances of the cluster. int
name SKU name. 'Dev(No SLA)_Standard_D11_v2'
'Dev(No SLA)_Standard_E2a_v4'
'Standard_D11_v2'
'Standard_D12_v2'
'Standard_D13_v2'
'Standard_D14_v2'
'Standard_DS13_v2+1TB_PS'
'Standard_DS13_v2+2TB_PS'
'Standard_DS14_v2+3TB_PS'
'Standard_DS14_v2+4TB_PS'
'Standard_E16as_v4+3TB_PS'
'Standard_E16as_v4+4TB_PS'
'Standard_E16a_v4'
'Standard_E2a_v4'
'Standard_E4a_v4'
'Standard_E64i_v3'
'Standard_E80ids_v4'
'Standard_E8as_v4+1TB_PS'
'Standard_E8as_v4+2TB_PS'
'Standard_E8a_v4'
'Standard_L16s'
'Standard_L16s_v2'
'Standard_L4s'
'Standard_L8s'
'Standard_L8s_v2' (required)
tier SKU tier. 'Basic'
'Standard' (required)

KustoPoolProperties

Name Description Value
engineType The engine type 'V2'
'V3'
workspaceUid The workspace unique identifier. string

TrackedResourceTags

Name Description Value