Azure Monitor · Schema

ItsmReceiver

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
name string The name of the ITSM receiver.
workspaceId string Log Analytics workspace ID.
connectionId string The unique connection identifier.
ticketConfiguration string JSON blob for the configurations of the ITSM action.
region string Region in which workspace resides.
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-itsmreceiver-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ItsmReceiver",
  "title": "ItsmReceiver",
  "type": "object",
  "required": [
    "name",
    "workspaceId",
    "connectionId",
    "ticketConfiguration",
    "region"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "The name of the ITSM receiver."
    },
    "workspaceId": {
      "type": "string",
      "description": "Log Analytics workspace ID."
    },
    "connectionId": {
      "type": "string",
      "description": "The unique connection identifier."
    },
    "ticketConfiguration": {
      "type": "string",
      "description": "JSON blob for the configurations of the ITSM action."
    },
    "region": {
      "type": "string",
      "description": "Region in which workspace resides."
    }
  }
}