Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Bicep resource definition
The clusters resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
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@2020-03-01-preview' = {
identity: {
type: 'string'
}
___location: 'string'
name: 'string'
properties: {
keyVaultProperties: {
keyName: 'string'
keyVaultUri: 'string'
keyVersion: 'string'
}
nextLink: 'string'
}
sku: {
capacity: int
name: 'string'
}
tags: {
{customized property}: 'string'
}
}
Property Values
ClusterProperties
Name | Description | Value |
---|---|---|
keyVaultProperties | The associated key properties. | KeyVaultProperties |
nextLink | The link used to get the next page of recommendations. | string |
ClusterSku
Name | Description | Value |
---|---|---|
capacity | The capacity value | int |
name | The name of the SKU. | 'CapacityReservation' |
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'None' 'SystemAssigned' (required) |
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 |
Microsoft.OperationalInsights/clusters
Name | Description | Value |
---|---|---|
identity | The identity of the resource. | Identity |
___location | The geo-___location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 4 Max length = 63 Pattern = ^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$ (required) |
properties | Log Analytics cluster properties. | ClusterProperties |
sku | The sku properties. | ClusterSku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
TrackedResourceTags
Name | Description | Value |
---|
ARM template resource definition
The clusters resource type can be deployed with operations that target:
- Resource groups - See resource group deployment commands
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": "2020-03-01-preview",
"name": "string",
"identity": {
"type": "string"
},
"___location": "string",
"properties": {
"keyVaultProperties": {
"keyName": "string",
"keyVaultUri": "string",
"keyVersion": "string"
},
"nextLink": "string"
},
"sku": {
"capacity": "int",
"name": "string"
},
"tags": {
"{customized property}": "string"
}
}
Property Values
ClusterProperties
Name | Description | Value |
---|---|---|
keyVaultProperties | The associated key properties. | KeyVaultProperties |
nextLink | The link used to get the next page of recommendations. | string |
ClusterSku
Name | Description | Value |
---|---|---|
capacity | The capacity value | int |
name | The name of the SKU. | 'CapacityReservation' |
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'None' 'SystemAssigned' (required) |
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 |
Microsoft.OperationalInsights/clusters
Name | Description | Value |
---|---|---|
apiVersion | The api version | '2020-03-01-preview' |
identity | The identity of the resource. | Identity |
___location | The geo-___location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 4 Max length = 63 Pattern = ^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$ (required) |
properties | Log Analytics cluster properties. | ClusterProperties |
sku | The sku properties. | ClusterSku |
tags | Resource tags | Dictionary of tag names and values. See Tags in templates |
type | The resource type | 'Microsoft.OperationalInsights/clusters' |
TrackedResourceTags
Name | Description | Value |
---|
Usage Examples
Terraform (AzAPI provider) resource definition
The clusters 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.OperationalInsights/clusters resource, add the following Terraform to your template.
resource "azapi_resource" "symbolicname" {
type = "Microsoft.OperationalInsights/clusters@2020-03-01-preview"
name = "string"
parent_id = "string"
identity {
type = "string"
identity_ids = [
"string"
]
}
___location = "string"
tags = {
{customized property} = "string"
}
body = {
properties = {
keyVaultProperties = {
keyName = "string"
keyVaultUri = "string"
keyVersion = "string"
}
nextLink = "string"
}
sku = {
capacity = int
name = "string"
}
}
}
Property Values
ClusterProperties
Name | Description | Value |
---|---|---|
keyVaultProperties | The associated key properties. | KeyVaultProperties |
nextLink | The link used to get the next page of recommendations. | string |
ClusterSku
Name | Description | Value |
---|---|---|
capacity | The capacity value | int |
name | The name of the SKU. | 'CapacityReservation' |
Identity
Name | Description | Value |
---|---|---|
type | The identity type. | 'None' 'SystemAssigned' (required) |
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 |
Microsoft.OperationalInsights/clusters
Name | Description | Value |
---|---|---|
identity | The identity of the resource. | Identity |
___location | The geo-___location where the resource lives | string (required) |
name | The resource name | string Constraints: Min length = 4 Max length = 63 Pattern = ^[A-Za-z0-9][A-Za-z0-9-]+[A-Za-z0-9]$ (required) |
properties | Log Analytics cluster properties. | ClusterProperties |
sku | The sku properties. | ClusterSku |
tags | Resource tags | Dictionary of tag names and values. |
type | The resource type | "Microsoft.OperationalInsights/clusters@2020-03-01-preview" |
TrackedResourceTags
Name | Description | Value |
---|