2020-03-13 15:44:24 +05:30
|
|
|
# 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
|
2020-04-22 19:07:51 +05:30
|
|
|
expose :name_regex_keep
|
2020-03-13 15:44:24 +05:30
|
|
|
expose :next_run_at
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|