debian-mirror-gitlab/app/graphql/types/alert_management/integration_type_enum.rb
2021-01-29 00:20:46 +05:30

13 lines
377 B
Ruby

# 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