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

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

module API
  module Entities
    class ContainerExpirationPolicy < Grape::Entity
      expose :cadence
      expose :enabled
      expose :keep_n
      expose :older_than
      expose :name_regex
      expose :name_regex_keep
      expose :next_run_at
    end
  end
end