Welcome to mirror list, hosted at ThFree Co, Russian Federation.

domain_filter_enum.rb « alert_management « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cd70cdd8ecfb1ba96eaae9cdcf4bddca8a201cd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# frozen_string_literal: true

module Types
  module AlertManagement
    class DomainFilterEnum < BaseEnum
      graphql_name 'AlertManagementDomainFilter'
      description  'Filters the alerts based on given domain'

      value 'operations', description: 'Alerts for operations domain.'
      value 'threat_monitoring', description: 'Alerts for threat monitoring domain.',
            deprecated: {
              reason: 'Network policies are deprecated and will be removed in GitLab 16.0',
              milestone: '15.0'
            }
    end
  end
end