debian-mirror-gitlab/lib/api/entities/container_expiration_policy.rb

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

16 lines
301 B
Ruby
Raw Normal View History

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