summaryrefslogtreecommitdiff
path: root/lib/api/entities/container_expiration_policy.rb
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