Microsoft.OperationalInsights clusters 2019-08-01-preview

Bicep resource definition

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

resource symbolicname 'Microsoft.OperationalInsights/clusters@2019-08-01-preview' = {
  name: 'string'
  location: 'string'
  tags: {
    tagName1: 'tagValue1'
    tagName2: 'tagValue2'
  }
  sku: {
    capacity: int
    name: 'CapacityReservation'
  }
  identity: {
    type: 'string'
  }
  properties: {
    keyVaultProperties: {
      keyName: 'string'
      keyVaultUri: 'string'
      keyVersion: 'string'
    }
    nextLink: 'string'
  }
}

Property values

clusters

Name Description Value
name The resource name string (required)

Character limit: 4-63

Valid characters:
Alphanumerics and hyphens.

Start and end with alphanumeric.
location Resource location string
tags Resource tags Dictionary of tag names and values. See Tags in templates
sku The sku properties. Sku
identity The identity of the resource. Identity
properties Log Analytics cluster properties. ClusterProperties

Identity

Name Description Value
type The identity type. 'None'
'SystemAssigned' (required)

ClusterProperties

Name Description Value
keyVaultProperties The associated key properties. KeyVaultProperties
nextLink The link used to get the next page of recommendations. string

KeyVaultProperties

Name Description Value
keyName The name of the key associated with the Log Analytics cluster. string
keyVaultUri The Key Vault uri which holds they key associated with the Log Analytics cluster. string
keyVersion The version of the key associated with the Log Analytics cluster. string

Sku

Name Description Value
capacity The capacity value int
name The name of the SKU. 'CapacityReservation'

ARM template resource definition

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

{
  "type": "Microsoft.OperationalInsights/clusters",
  "apiVersion": "2019-08-01-preview",
  "name": "string",
  "location": "string",
  "tags": {
    "tagName1": "tagValue1",
    "tagName2": "tagValue2"
  },
  "sku": {
    "capacity": "int",
    "name": "CapacityReservation"
  },
  "identity": {
    "type": "string"
  },
  "properties": {
    "keyVaultProperties": {
      "keyName": "string",
      "keyVaultUri": "string",
      "keyVersion": "string"
    },
    "nextLink": "string"
  }
}

Property values

clusters

Name Description Value
type The resource type 'Microsoft.OperationalInsights/clusters'
apiVersion The resource api version '2019-08-01-preview'
name The resource name string (required)

Character limit: 4-63

Valid characters:
Alphanumerics and hyphens.

Start and end with alphanumeric.
location Resource location string
tags Resource tags Dictionary of tag names and values. See Tags in templates
sku The sku properties. Sku
identity The identity of the resource. Identity
properties Log Analytics cluster properties. ClusterProperties

Identity

Name Description Value
type The identity type. 'None'
'SystemAssigned' (required)

ClusterProperties

Name Description Value
keyVaultProperties The associated key properties. KeyVaultProperties
nextLink The link used to get the next page of recommendations. string

KeyVaultProperties

Name Description Value
keyName The name of the key associated with the Log Analytics cluster. string
keyVaultUri The Key Vault uri which holds they key associated with the Log Analytics cluster. string
keyVersion The version of the key associated with the Log Analytics cluster. string

Sku

Name Description Value
capacity The capacity value int
name The name of the SKU. 'CapacityReservation'

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.OperationalInsights/clusters@2019-08-01-preview"
  name = "string"
  location = "string"
  parent_id = "string"
  tags = {
    tagName1 = "tagValue1"
    tagName2 = "tagValue2"
  }
  identity {
    type =  "SystemAssigned"
  }
  body = jsonencode({
    properties = {
      keyVaultProperties = {
        keyName = "string"
        keyVaultUri = "string"
        keyVersion = "string"
      }
      nextLink = "string"
    }
    sku = {
      capacity = int
      name = "CapacityReservation"
    }
  })
}

Property values

clusters

Name Description Value
type The resource type "Microsoft.OperationalInsights/clusters@2019-08-01-preview"
name The resource name string (required)

Character limit: 4-63

Valid characters:
Alphanumerics and hyphens.

Start and end with alphanumeric.
location Resource location string
parent_id To deploy to a resource group, use the ID of that resource group. string (required)
tags Resource tags Dictionary of tag names and values.
sku The sku properties. Sku
identity The identity of the resource. Identity
properties Log Analytics cluster properties. ClusterProperties

Identity

Name Description Value
type The identity type. "SystemAssigned" (required)

ClusterProperties

Name Description Value
keyVaultProperties The associated key properties. KeyVaultProperties
nextLink The link used to get the next page of recommendations. string

KeyVaultProperties

Name Description Value
keyName The name of the key associated with the Log Analytics cluster. string
keyVaultUri The Key Vault uri which holds they key associated with the Log Analytics cluster. string
keyVersion The version of the key associated with the Log Analytics cluster. string

Sku

Name Description Value
capacity The capacity value int
name The name of the SKU. "CapacityReservation"