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

container_repository_cleanup_status_enum.rb « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e654e653604335b1000215dc5567c5afed0c0ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# frozen_string_literal: true

module Types
  class ContainerRepositoryCleanupStatusEnum < BaseEnum
    graphql_name 'ContainerRepositoryCleanupStatus'
    description 'Status of the tags cleanup of a container repository'

    value 'UNSCHEDULED', value: 'cleanup_unscheduled', description: 'The tags cleanup is not scheduled. This is the default state.'
    value 'SCHEDULED', value: 'cleanup_scheduled', description: 'The tags cleanup is scheduled and is going to be executed shortly.'
    value 'UNFINISHED', value: 'cleanup_unfinished', description: 'The tags cleanup has been partially executed. There are still remaining tags to delete.'
    value 'ONGOING', value: 'cleanup_ongoing', description: 'The tags cleanup is ongoing.'
  end
end