debian-mirror-gitlab/lib/api/entities/ci/variable.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
995 B
Ruby
Raw Normal View History

2020-10-24 23:57:45 +05:30
# frozen_string_literal: true
module API
module Entities
module Ci
class Variable < Grape::Entity
2023-01-13 00:05:48 +05:30
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: '*' }
2020-10-24 23:57:45 +05:30
end
end
end
end