summaryrefslogtreecommitdiff
path: root/app/graphql/types/alert_management/integration_type_enum.rb
blob: 2f9be549e58234bd3a460a516dec757b86ef9598 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  module AlertManagement
    class IntegrationTypeEnum < BaseEnum
      graphql_name 'AlertManagementIntegrationType'
      description 'Values of types of integrations'

      value 'PROMETHEUS', 'Prometheus integration', value: :prometheus
      value 'HTTP', 'Integration with any monitoring tool', value: :http
    end
  end
end