Microsoft.OperationalInsights workspaces/summaryLogs

Bicep resource definition

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

resource symbolicname 'Microsoft.OperationalInsights/workspaces/summaryLogs@2025-07-01' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    description: 'string'
    displayName: 'string'
    ruleDefinition: {
      binDelay: int
      binSize: int
      binStartTime: 'string'
      destinationTable: 'string'
      query: 'string'
      timeSelector: 'string'
    }
    ruleType: 'string'
  }
}

Property Values

Microsoft.OperationalInsights/workspaces/summaryLogs

Name Description Value
name The resource name string

Constraints:
Pattern = [^/]+ (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 Summary rule properties. SummaryLogsProperties

RuleDefinition

Name Description Value
binDelay The minimum delay in seconds before bin processing. int
binSize Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440. int
binStartTime The start time (UTC) when Summary rule execution starts. string
destinationTable The destination table used for the Summary rule results. string
query Summary rule query. string
timeSelector The time cursor used in Summary rules bins processing, e.g. TimeGenerated. 'TimeGenerated'

SummaryLogsProperties

Name Description Value
description The description of the Summary rule. string
displayName The display name of the Summary rule. string
ruleDefinition Rule definition parameters. RuleDefinition
ruleType SummaryRules rule type: User. 'User'

ARM template resource definition

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

{
  "type": "Microsoft.OperationalInsights/workspaces/summaryLogs",
  "apiVersion": "2025-07-01",
  "name": "string",
  "properties": {
    "description": "string",
    "displayName": "string",
    "ruleDefinition": {
      "binDelay": "int",
      "binSize": "int",
      "binStartTime": "string",
      "destinationTable": "string",
      "query": "string",
      "timeSelector": "string"
    },
    "ruleType": "string"
  }
}

Property Values

Microsoft.OperationalInsights/workspaces/summaryLogs

Name Description Value
apiVersion The api version '2025-07-01'
name The resource name string

Constraints:
Pattern = [^/]+ (required)
properties Summary rule properties. SummaryLogsProperties
type The resource type 'Microsoft.OperationalInsights/workspaces/summaryLogs'

RuleDefinition

Name Description Value
binDelay The minimum delay in seconds before bin processing. int
binSize Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440. int
binStartTime The start time (UTC) when Summary rule execution starts. string
destinationTable The destination table used for the Summary rule results. string
query Summary rule query. string
timeSelector The time cursor used in Summary rules bins processing, e.g. TimeGenerated. 'TimeGenerated'

SummaryLogsProperties

Name Description Value
description The description of the Summary rule. string
displayName The display name of the Summary rule. string
ruleDefinition Rule definition parameters. RuleDefinition
ruleType SummaryRules rule type: User. 'User'

Usage Examples

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.OperationalInsights/workspaces/summaryLogs@2025-07-01"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      description = "string"
      displayName = "string"
      ruleDefinition = {
        binDelay = int
        binSize = int
        binStartTime = "string"
        destinationTable = "string"
        query = "string"
        timeSelector = "string"
      }
      ruleType = "string"
    }
  }
}

Property Values

Microsoft.OperationalInsights/workspaces/summaryLogs

Name Description Value
name The resource name string

Constraints:
Pattern = [^/]+ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: workspaces
properties Summary rule properties. SummaryLogsProperties
type The resource type "Microsoft.OperationalInsights/workspaces/summaryLogs@2025-07-01"

RuleDefinition

Name Description Value
binDelay The minimum delay in seconds before bin processing. int
binSize Scheduled window in minutes. Allowed values: 20, 30, 60, 120, 180, 360, 720, 1440. int
binStartTime The start time (UTC) when Summary rule execution starts. string
destinationTable The destination table used for the Summary rule results. string
query Summary rule query. string
timeSelector The time cursor used in Summary rules bins processing, e.g. TimeGenerated. 'TimeGenerated'

SummaryLogsProperties

Name Description Value
description The description of the Summary rule. string
displayName The display name of the Summary rule. string
ruleDefinition Rule definition parameters. RuleDefinition
ruleType SummaryRules rule type: User. 'User'