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:
authorGitLab Bot <gitlab-bot@gitlab.com>2021-07-07 06:08:47 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2021-07-07 06:08:47 +0300
commit0dce207848e4dd4425c116fb91a5cd2b41a8ec59 (patch)
tree72b4ad1a34cae6a4a0d552416528d42167d1a39f /doc/api/plan_limits.md
parent3462d7613fb761a4cbf2904c6980fd39b6f8bd5f (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/plan_limits.md')
-rw-r--r--doc/api/plan_limits.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/api/plan_limits.md b/doc/api/plan_limits.md
index 105cf13f9de..14c1c3f6f47 100644
--- a/doc/api/plan_limits.md
+++ b/doc/api/plan_limits.md
@@ -41,7 +41,8 @@ Example response:
"maven_max_file_size": 3221225472,
"npm_max_file_size": 524288000,
"nuget_max_file_size": 524288000,
- "pypi_max_file_size": 3221225472
+ "pypi_max_file_size": 3221225472,
+ "terraform_module_max_file_size": 1073741824
}
```
@@ -62,6 +63,7 @@ PUT /application/plan_limits
| `npm_max_file_size` | integer | no | Maximum NPM package file size in bytes. |
| `nuget_max_file_size` | integer | no | Maximum NuGet package file size in bytes. |
| `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. |
```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"
@@ -76,6 +78,7 @@ Example response:
"maven_max_file_size": 3221225472,
"npm_max_file_size": 524288000,
"nuget_max_file_size": 524288000,
- "pypi_max_file_size": 3221225472
+ "pypi_max_file_size": 3221225472,
+ "terraform_module_max_file_size": 1073741824
}
```