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
path: root/doc/api
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-05-23 12:10:10 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-05-23 12:10:10 +0300
commit611b009e924c25fcc8706b52af90542c4b78f0c0 (patch)
tree01f1731b71224d4b2e3b427ef7a89f2df0de9f86 /doc/api
parentadb8dbff4284689e6902ff455ef74cf84fb79404 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api')
-rw-r--r--doc/api/plan_limits.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/api/plan_limits.md b/doc/api/plan_limits.md
index f93f246c3f0..09d96bb0534 100644
--- a/doc/api/plan_limits.md
+++ b/doc/api/plan_limits.md
@@ -50,7 +50,8 @@ Example response:
"nuget_max_file_size": 524288000,
"pypi_max_file_size": 3221225472,
"terraform_module_max_file_size": 1073741824,
- "storage_size_limit": 15000
+ "storage_size_limit": 15000,
+ "notification_limit": 10000
}
```
@@ -81,6 +82,7 @@ PUT /application/plan_limits
| `pypi_max_file_size` | integer | no | Maximum PyPI package file size in bytes. |
| `terraform_module_max_file_size` | integer | no | Maximum Terraform Module package file size in bytes. |
| `storage_size_limit` | integer | no | Maximum storage size for the root namespace in megabytes. |
+| `notification_limit` | integer | no | Maximum storage size for root namespace limit notifications in megabytes. |
```shell
curl --request PUT --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/application/plan_limits?plan_name=default&conan_max_file_size=3221225472"