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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/graphql/types/container_expiration_policy_type.rb')
-rw-r--r--app/graphql/types/container_expiration_policy_type.rb21
1 files changed, 21 insertions, 0 deletions
diff --git a/app/graphql/types/container_expiration_policy_type.rb b/app/graphql/types/container_expiration_policy_type.rb
new file mode 100644
index 00000000000..da53dbcbd39
--- /dev/null
+++ b/app/graphql/types/container_expiration_policy_type.rb
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+module Types
+ class ContainerExpirationPolicyType < BaseObject
+ graphql_name 'ContainerExpirationPolicy'
+
+ description 'A tag expiration policy designed to keep only the images that matter most'
+
+ authorize :destroy_container_image
+
+ field :created_at, Types::TimeType, null: false, description: 'Timestamp of when the container expiration policy was created'
+ field :updated_at, Types::TimeType, null: false, description: 'Timestamp of when the container expiration policy was updated'
+ field :enabled, GraphQL::BOOLEAN_TYPE, null: false, description: 'Indicates whether this container expiration policy is enabled'
+ field :older_than, Types::ContainerExpirationPolicyOlderThanEnum, null: true, description: 'Tags older that this will expire'
+ field :cadence, Types::ContainerExpirationPolicyCadenceEnum, null: false, description: 'This container expiration policy schedule'
+ field :keep_n, Types::ContainerExpirationPolicyKeepEnum, null: true, description: 'Number of tags to retain'
+ field :name_regex, GraphQL::STRING_TYPE, null: true, description: 'Tags with names matching this regex pattern will expire'
+ field :name_regex_keep, GraphQL::STRING_TYPE, null: true, description: 'Tags with names matching this regex pattern will be preserved'
+ field :next_run_at, Types::TimeType, null: true, description: 'Next time that this container expiration policy will get executed'
+ end
+end