Microsoft.Monitor accounts/issues

Bicep resource definition

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

resource symbolicname 'Microsoft.Monitor/accounts/issues@2025-10-03' = {
  parent: resourceSymbolicName
  name: 'string'
  properties: {
    background: {
      details: [
        {
          name: 'string'
          value: 'string'
        }
      ]
      text: 'string'
      type: 'string'
    }
    impactTime: 'string'
    notifications: {
      actionGroupIds: [
        'string'
      ]
      excludeDefaultActionGroups: bool
      updateTypes: [
        {
          updateType: 'string'
          // For remaining properties, see IssueNotificationType objects
        }
      ]
    }
    severity: 'string'
    status: 'string'
    title: 'string'
  }
}

IssueNotificationType objects

Set the updateType property to specify the type of object.

For IssueCreation, use:

{
  updateType: 'IssueCreation'
}

For OnChange, use:

{
  updateType: 'OnChange'
}

For TimeBased, use:

{
  updateInterval: 'string'
  updateType: 'TimeBased'
}

Property Values

Microsoft.Monitor/accounts/issues

Name Description Value
name The resource name string

Constraints:
Pattern = ^(?!-)[a-zA-Z0-9-]+[^-]$ (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: accounts
properties The resource-specific properties for this resource. IssueProperties

Background

Name Description Value
details The background details BackgroundDetails[]
text The background text string
type The background type string

BackgroundDetails

Name Description Value
name The background details name string (required)
value The background details value string (required)

IssueCreationNotificationType

Name Description Value
updateType The type of update that triggers the notification 'IssueCreation' (required)

IssueNotificationType

Name Description Value
updateType Set to 'IssueCreation' for type IssueCreationNotificationType. Set to 'OnChange' for type OnChangeNotificationType. Set to 'TimeBased' for type TimeBasedUpdatesNotificationType. 'IssueCreation'
'OnChange'
'TimeBased' (required)

IssueProperties

Name Description Value
background The issue background information Background
impactTime The issue impact time (in UTC) string (required)
notifications The issue notification settings Notifications
severity The issue severity string (required)
status The issue status 'Canceled'
'Closed'
'InProgress'
'Mitigated'
'New' (required)
title The issue title string (required)

Notifications

Name Description Value
actionGroupIds The action group IDs to notify string[]
excludeDefaultActionGroups Whether to exclude default action groups from notifications bool
updateTypes The types of updates that trigger notifications IssueNotificationType[]

OnChangeNotificationType

Name Description Value
updateType The type of update that triggers the notification 'OnChange' (required)

TimeBasedUpdatesNotificationType

Name Description Value
updateInterval The interval between time-based updates string (required)
updateType The type of update that triggers the notification 'TimeBased' (required)

ARM template resource definition

The accounts/issues resource type can be deployed with operations that target:

Usage Examples

Resource format

To create a Microsoft.Monitor/accounts/issues resource, add the following JSON to your template.

{
  "type": "Microsoft.Monitor/accounts/issues",
  "apiVersion": "2025-10-03",
  "name": "string",
  "properties": {
    "background": {
      "details": [
        {
          "name": "string",
          "value": "string"
        }
      ],
      "text": "string",
      "type": "string"
    },
    "impactTime": "string",
    "notifications": {
      "actionGroupIds": [ "string" ],
      "excludeDefaultActionGroups": "bool",
      "updateTypes": [ {
        "updateType": "string"
        // For remaining properties, see IssueNotificationType objects
      } ]
    },
    "severity": "string",
    "status": "string",
    "title": "string"
  }
}

IssueNotificationType objects

Set the updateType property to specify the type of object.

For IssueCreation, use:

{
  "updateType": "IssueCreation"
}

For OnChange, use:

{
  "updateType": "OnChange"
}

For TimeBased, use:

{
  "updateInterval": "string",
  "updateType": "TimeBased"
}

Property Values

Microsoft.Monitor/accounts/issues

Name Description Value
apiVersion The api version '2025-10-03'
name The resource name string

Constraints:
Pattern = ^(?!-)[a-zA-Z0-9-]+[^-]$ (required)
properties The resource-specific properties for this resource. IssueProperties
type The resource type 'Microsoft.Monitor/accounts/issues'

Background

Name Description Value
details The background details BackgroundDetails[]
text The background text string
type The background type string

BackgroundDetails

Name Description Value
name The background details name string (required)
value The background details value string (required)

IssueCreationNotificationType

Name Description Value
updateType The type of update that triggers the notification 'IssueCreation' (required)

IssueNotificationType

Name Description Value
updateType Set to 'IssueCreation' for type IssueCreationNotificationType. Set to 'OnChange' for type OnChangeNotificationType. Set to 'TimeBased' for type TimeBasedUpdatesNotificationType. 'IssueCreation'
'OnChange'
'TimeBased' (required)

IssueProperties

Name Description Value
background The issue background information Background
impactTime The issue impact time (in UTC) string (required)
notifications The issue notification settings Notifications
severity The issue severity string (required)
status The issue status 'Canceled'
'Closed'
'InProgress'
'Mitigated'
'New' (required)
title The issue title string (required)

Notifications

Name Description Value
actionGroupIds The action group IDs to notify string[]
excludeDefaultActionGroups Whether to exclude default action groups from notifications bool
updateTypes The types of updates that trigger notifications IssueNotificationType[]

OnChangeNotificationType

Name Description Value
updateType The type of update that triggers the notification 'OnChange' (required)

TimeBasedUpdatesNotificationType

Name Description Value
updateInterval The interval between time-based updates string (required)
updateType The type of update that triggers the notification 'TimeBased' (required)

Terraform (AzAPI provider) resource definition

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

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.Monitor/accounts/issues@2025-10-03"
  name = "string"
  parent_id = "string"
  body = {
    properties = {
      background = {
        details = [
          {
            name = "string"
            value = "string"
          }
        ]
        text = "string"
        type = "string"
      }
      impactTime = "string"
      notifications = {
        actionGroupIds = [
          "string"
        ]
        excludeDefaultActionGroups = bool
        updateTypes = [
          {
            updateType = "string"
            // For remaining properties, see IssueNotificationType objects
          }
        ]
      }
      severity = "string"
      status = "string"
      title = "string"
    }
  }
}

IssueNotificationType objects

Set the updateType property to specify the type of object.

For IssueCreation, use:

{
  updateType = "IssueCreation"
}

For OnChange, use:

{
  updateType = "OnChange"
}

For TimeBased, use:

{
  updateInterval = "string"
  updateType = "TimeBased"
}

Property Values

Microsoft.Monitor/accounts/issues

Name Description Value
name The resource name string

Constraints:
Pattern = ^(?!-)[a-zA-Z0-9-]+[^-]$ (required)
parent_id The ID of the resource that is the parent for this resource. ID for resource of type: accounts
properties The resource-specific properties for this resource. IssueProperties
type The resource type "Microsoft.Monitor/accounts/issues@2025-10-03"

Background

Name Description Value
details The background details BackgroundDetails[]
text The background text string
type The background type string

BackgroundDetails

Name Description Value
name The background details name string (required)
value The background details value string (required)

IssueCreationNotificationType

Name Description Value
updateType The type of update that triggers the notification 'IssueCreation' (required)

IssueNotificationType

Name Description Value
updateType Set to 'IssueCreation' for type IssueCreationNotificationType. Set to 'OnChange' for type OnChangeNotificationType. Set to 'TimeBased' for type TimeBasedUpdatesNotificationType. 'IssueCreation'
'OnChange'
'TimeBased' (required)

IssueProperties

Name Description Value
background The issue background information Background
impactTime The issue impact time (in UTC) string (required)
notifications The issue notification settings Notifications
severity The issue severity string (required)
status The issue status 'Canceled'
'Closed'
'InProgress'
'Mitigated'
'New' (required)
title The issue title string (required)

Notifications

Name Description Value
actionGroupIds The action group IDs to notify string[]
excludeDefaultActionGroups Whether to exclude default action groups from notifications bool
updateTypes The types of updates that trigger notifications IssueNotificationType[]

OnChangeNotificationType

Name Description Value
updateType The type of update that triggers the notification 'OnChange' (required)

TimeBasedUpdatesNotificationType

Name Description Value
updateInterval The interval between time-based updates string (required)
updateType The type of update that triggers the notification 'TimeBased' (required)