Azure Monitor · Schema

ScheduledQueryRuleResource

Application InsightsCloudLogsMetricsMonitoringObservability

Properties

Name Type Description
id string Fully qualified resource ID.
name string The name of the resource.
type string The type of the resource.
location string The geo-location where the resource lives.
tags object Resource tags.
kind string Indicates the type of scheduled query rule. The default is LogAlert.
etag string The etag field is not required.
systemData object
properties object
View JSON Schema on GitHub

JSON Schema

microsoft-azure-monitor-scheduledqueryruleresource-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ScheduledQueryRuleResource",
  "title": "ScheduledQueryRuleResource",
  "type": "object",
  "required": [
    "location",
    "properties"
  ],
  "properties": {
    "id": {
      "type": "string",
      "readOnly": true,
      "description": "Fully qualified resource ID."
    },
    "name": {
      "type": "string",
      "readOnly": true,
      "description": "The name of the resource."
    },
    "type": {
      "type": "string",
      "readOnly": true,
      "description": "The type of the resource."
    },
    "location": {
      "type": "string",
      "description": "The geo-location where the resource lives."
    },
    "tags": {
      "type": "object",
      "additionalProperties": {
        "type": "string"
      },
      "description": "Resource tags."
    },
    "kind": {
      "type": "string",
      "enum": [
        "LogAlert",
        "LogToMetric"
      ],
      "description": "Indicates the type of scheduled query rule. The default is LogAlert."
    },
    "etag": {
      "type": "string",
      "readOnly": true,
      "description": "The etag field is not required."
    },
    "systemData": {
      "$ref": "#/components/schemas/SystemData"
    },
    "properties": {
      "$ref": "#/components/schemas/ScheduledQueryRuleProperties"
    }
  }
}