Azure Monitor · Schema

ArmRoleReceiver

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of the ARM role receiver.
roleId string The ARM role ID.
useCommonAlertSchema boolean Indicates whether to use common alert schema.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-armrolereceiver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ArmRoleReceiver",
  "title": "ArmRoleReceiver",
  "type": "object",
  "required": [
    "name",
    "roleId"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the ARM role receiver."
    },
    "roleId": {
      "type": "string",
      "description": "The ARM role ID."
    },
    "useCommonAlertSchema": {
      "type": "boolean",
      "default": false,
      "description": "Indicates whether to use common alert schema."
    }
  }
}