summaryrefslogtreecommitdiff
path: root/doc/api/container_registry.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/api/container_registry.md')
-rw-r--r--doc/api/container_registry.md34
1 files changed, 4 insertions, 30 deletions
diff --git a/doc/api/container_registry.md b/doc/api/container_registry.md
index eb5a124c40c..0dd2106b4d1 100644
--- a/doc/api/container_registry.md
+++ b/doc/api/container_registry.md
@@ -127,6 +127,8 @@ Example response:
### Within a group
+> [Removed](https://gitlab.com/gitlab-org/gitlab/-/issues/336912) the `tags` and `tag_count` attributes in GitLab 15.0.
+
Get a list of registry repositories in a group.
```plaintext
@@ -136,12 +138,10 @@ GET /groups/:id/registry/repositories
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the group](index.md#namespaced-path-encoding) accessible by the authenticated user. |
-| `tags` | boolean | no | If the parameter is included as true, each repository includes an array of `"tags"` in the response. |
-| `tags_count` | boolean | no | If the parameter is included as true, each repository includes `"tags_count"` in the response ([Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/32141) in GitLab 13.1). |
```shell
curl --header "PRIVATE-TOKEN: <your_access_token>" \
- "https://gitlab.example.com/api/v4/groups/2/registry/repositories?tags=1&tags_count=true"
+ "https://gitlab.example.com/api/v4/groups/2/registry/repositories"
```
Example response:
@@ -156,14 +156,6 @@ Example response:
"location": "gitlab.example.com:5000/group/project",
"created_at": "2019-01-10T13:38:57.391Z",
"cleanup_policy_started_at": "2020-08-17T03:12:35.489Z",
- "tags_count": 1,
- "tags": [
- {
- "name": "0.0.1",
- "path": "group/project:0.0.1",
- "location": "gitlab.example.com:5000/group/project:0.0.1"
- }
- ]
},
{
"id": 2,
@@ -173,24 +165,6 @@ Example response:
"location": "gitlab.example.com:5000/group/other_project",
"created_at": "2019-01-10T13:39:08.229Z",
"cleanup_policy_started_at": "2020-01-10T15:40:57.391Z",
- "tags_count": 3,
- "tags": [
- {
- "name": "0.0.1",
- "path": "group/other_project:0.0.1",
- "location": "gitlab.example.com:5000/group/other_project:0.0.1"
- },
- {
- "name": "0.0.2",
- "path": "group/other_project:0.0.2",
- "location": "gitlab.example.com:5000/group/other_project:0.0.2"
- },
- {
- "name": "latest",
- "path": "group/other_project:latest",
- "location": "gitlab.example.com:5000/group/other_project:latest"
- }
- ]
}
]
```
@@ -446,7 +420,7 @@ These are different from project or personal access tokens in the GitLab applica
GET /v2/_catalog
```
-To list all container repositories on your GitLab instance, admin credentials are required:
+To list all container repositories on your GitLab instance, administrator credentials are required:
```shell
$ curl --request GET --user "<admin-username>:<admin-password>" "https://gitlab.example.com/jwt/auth?service=container_registry&scope=registry:catalog:*"