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>2020-02-27 12:09:01 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2020-02-27 12:09:01 +0300
commitc72e5ebe9938d315ec598197873e71a80168d40a (patch)
tree439bf5c40aaf774e5a301825af517cb52726f450 /doc/api/container_registry.md
parentffc43b862df32a590eae874bcbb11109b46dc8be (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/container_registry.md')
-rw-r--r--doc/api/container_registry.md14
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/api/container_registry.md b/doc/api/container_registry.md
index f9c6ec4e572..f09ba3fc4ce 100644
--- a/doc/api/container_registry.md
+++ b/doc/api/container_registry.md
@@ -10,7 +10,7 @@ This is the API docs of the [GitLab Container Registry](../user/packages/contain
Get a list of registry repositories in a project.
-```
+```plaintext
GET /projects/:id/registry/repositories
```
@@ -50,7 +50,7 @@ Example response:
Get a list of registry repositories in a group.
-```
+```plaintext
GET /groups/:id/registry/repositories
```
@@ -116,7 +116,7 @@ Delete a repository in registry.
This operation is executed asynchronously and might take some time to get executed.
-```
+```plaintext
DELETE /projects/:id/registry/repositories/:repository_id
```
@@ -135,7 +135,7 @@ curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://git
Get a list of tags for given registry repository.
-```
+```plaintext
GET /projects/:id/registry/repositories/:repository_id/tags
```
@@ -169,7 +169,7 @@ Example response:
Get details of a registry repository tag.
-```
+```plaintext
GET /projects/:id/registry/repositories/:repository_id/tags/:tag_name
```
@@ -202,7 +202,7 @@ Example response:
Delete a registry repository tag.
-```
+```plaintext
DELETE /projects/:id/registry/repositories/:repository_id/tags/:tag_name
```
@@ -223,7 +223,7 @@ This action does not delete blobs. In order to delete them and recycle disk spac
Delete registry repository tags in bulk based on given criteria.
-```
+```plaintext
DELETE /projects/:id/registry/repositories/:repository_id/tags
```