2021-04-17 20:07:23 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class PlanLimit < Grape::Entity
|
2022-07-16 23:28:13 +05:30
|
|
|
expose :ci_pipeline_size
|
|
|
|
expose :ci_active_jobs
|
|
|
|
expose :ci_active_pipelines
|
|
|
|
expose :ci_project_subscriptions
|
|
|
|
expose :ci_pipeline_schedules
|
|
|
|
expose :ci_needs_size_limit
|
|
|
|
expose :ci_registered_group_runners
|
|
|
|
expose :ci_registered_project_runners
|
2021-04-17 20:07:23 +05:30
|
|
|
expose :conan_max_file_size
|
|
|
|
expose :generic_packages_max_file_size
|
2022-01-26 12:08:38 +05:30
|
|
|
expose :helm_max_file_size
|
2021-04-17 20:07:23 +05:30
|
|
|
expose :maven_max_file_size
|
|
|
|
expose :npm_max_file_size
|
|
|
|
expose :nuget_max_file_size
|
|
|
|
expose :pypi_max_file_size
|
2021-09-30 23:02:18 +05:30
|
|
|
expose :terraform_module_max_file_size
|
2022-07-16 23:28:13 +05:30
|
|
|
expose :storage_size_limit
|
2021-04-17 20:07:23 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|