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

variable.rb « ci « entities « api « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47597cb77be39d022ede3dc16556b3e1b353eabe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true

module API
  module Entities
    module Ci
      class Variable < Grape::Entity
        expose :variable_type, documentation: { type: 'string', example: 'env_var' }
        expose :key, documentation: { type: 'string', example: 'TEST_VARIABLE_1' }
        expose :value, documentation: { type: 'string', example: 'TEST_1' }
        expose :protected?, as: :protected, if: -> (entity, _) { entity.respond_to?(:protected?) },
                            documentation: { type: 'boolean' }
        expose :masked?, as: :masked, if: -> (entity, _) { entity.respond_to?(:masked?) },
                         documentation: { type: 'boolean' }
        expose :raw?, as: :raw, if: -> (entity, _) { entity.respond_to?(:raw?) }, documentation: { type: 'boolean' }
        expose :environment_scope, if: -> (entity, _) { entity.respond_to?(:environment_scope) },
                                   documentation: { type: 'string', example: '*' }
      end
    end
  end
end