Microsoft Azure Common Alert Types

Microsoft Azure Common Alert Types is a feature that allows users to set up alerts for various events and occurrences within their Azure environment. These alerts can be customized to monitor specific metrics, such as CPU usage, storage levels, or connectivity issues. Users can choose from a variety of alert types, such as email notifications or integrations with third-party monitoring tools.

OpenAPI Specification

common-alert-types-openapi-original.yml Raw ↑
swagger: '2.0'
info:
  version: 2024-01-01-preview
  title: Microsoft Azure Common Alert types
paths: {}
securityDefinitions:
  azure_auth:
    type: oauth2
    authorizationUrl: https://login.microsoftonline.com/common/oauth2/authorize
    flow: implicit
    description: Azure Active Directory OAuth2 Flow
    scopes:
      user_impersonation: impersonate your user account
definitions:
  AlertSeverityEnum:
    description: The severity of the alert
    enum:
      - High
      - Medium
      - Low
      - Informational
    type: string
    x-ms-enum:
      modelAsString: true
      name: AlertSeverity
      values:
        - description: High severity
          value: High
        - description: Medium severity
          value: Medium
        - description: Low severity
          value: Low
        - description: Informational severity
          value: Informational
  AttackTactic:
    description: The severity for alerts created by this alert rule.
    enum:
      - Reconnaissance
      - ResourceDevelopment
      - InitialAccess
      - Execution
      - Persistence
      - PrivilegeEscalation
      - DefenseEvasion
      - CredentialAccess
      - Discovery
      - LateralMovement
      - Collection
      - Exfiltration
      - CommandAndControl
      - Impact
      - PreAttack
      - ImpairProcessControl
      - InhibitResponseFunction
    type: string
    x-ms-enum:
      modelAsString: true
      name: AttackTactic
parameters: {}