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

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

module Types
  class DeploymentTierEnum < BaseEnum
    graphql_name 'DeploymentTier'
    description 'All environment deployment tiers.'

    value 'PRODUCTION', description: 'Production.', value: :production
    value 'STAGING', description: 'Staging.', value: :staging
    value 'TESTING', description: 'Testing.', value: :testing
    value 'DEVELOPMENT', description: 'Development.', value: :development
    value 'OTHER', description: 'Other.', value: :other
  end
end