2021-03-03 01:11:13 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
class PlanLimit < Grape::Entity
|
2022-04-29 08:10:13 -04:00
|
|
|
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-03-03 01:11:13 -05:00
|
|
|
expose :conan_max_file_size
|
|
|
|
expose :generic_packages_max_file_size
|
2021-12-01 10:13:55 -05:00
|
|
|
expose :helm_max_file_size
|
2021-03-03 01:11:13 -05:00
|
|
|
expose :maven_max_file_size
|
|
|
|
expose :npm_max_file_size
|
|
|
|
expose :nuget_max_file_size
|
|
|
|
expose :pypi_max_file_size
|
2021-07-06 23:08:47 -04:00
|
|
|
expose :terraform_module_max_file_size
|
2022-05-10 14:08:27 -04:00
|
|
|
expose :storage_size_limit
|
2021-03-03 01:11:13 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|