Microsoft.StreamAnalytics clusters

ARM template resource definition

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

{
  "type": "Microsoft.StreamAnalytics/clusters",
  "apiVersion": "2020-03-01",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "sku": {
    "capacity": "int",
    "name": "Default"
  },
  "properties": {}
}

Property values

clusters

Name Description Value
type The resource type 'Microsoft.StreamAnalytics/clusters'
apiVersion The resource api version '2020-03-01'
name The resource name string (required)
location The geo-location where the resource lives string
tags Resource tags. Dictionary of tag names and values. See Tags in templates
sku The SKU of the cluster. This determines the size/capacity of the cluster. Required on PUT (CreateOrUpdate) requests. ClusterSku
properties The properties associated with a Stream Analytics cluster. ClusterProperties

ClusterProperties

This object doesn't contain any properties to set during deployment. All properties are ReadOnly.

ClusterSku

Name Description Value
capacity Denotes the number of streaming units the cluster can support. Valid values for this property are multiples of 36 with a minimum value of 36 and maximum value of 216. Required on PUT (CreateOrUpdate) requests. int

Constraints:
Min value = 36
Max value = 396
name Specifies the SKU name of the cluster. Required on PUT (CreateOrUpdate) requests. 'Default'