350.md 5.8 KB
Newer Older
Lab机器人's avatar
readme  
Lab机器人 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
# Project repository storage moves API

> 原文:[https://docs.gitlab.com/ee/api/project_repository_storage_moves.html](https://docs.gitlab.com/ee/api/project_repository_storage_moves.html)

*   [Retrieve all project repository storage moves](#retrieve-all-project-repository-storage-moves)
*   [Retrieve all repository storage moves for a project](#retrieve-all-repository-storage-moves-for-a-project)
*   [Get a single project repository storage move](#get-a-single-project-repository-storage-move)
*   [Get a single repository storage move for a project](#get-a-single-repository-storage-move-for-a-project)
*   [Schedule a repository storage move for a project](#schedule-a-repository-storage-move-for-a-project)

# Project repository storage moves API[](#project-repository-storage-moves-api-core-only "Permalink")

在 GitLab 13.0 中[引入](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/31285) .

项目存储库存储可以移动. 要使用 API​​检索项目存储库存储移动,您必须以管理员[身份进行身份验证](README.html#authentication) .

## Retrieve all project repository storage moves[](#retrieve-all-project-repository-storage-moves "Permalink")

```
GET /project_repository_storage_moves 
```

默认情况下,因为 API 结果是[分页的](README.html#pagination) ,所以`GET`请求一次返回 20 个结果.

请求示例:

```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/project_repository_storage_moves" 
```

响应示例:

```
[  {  "id":  1,  "created_at":  "2020-05-07T04:27:17.234Z",  "state":  "scheduled",  "source_storage_name":  "default",  "destination_storage_name":  "storage2",  "project":  {  "id":  1,  "description":  null,  "name":  "project1",  "name_with_namespace":  "John Doe2 / project1",  "path":  "project1",  "path_with_namespace":  "namespace1/project1",  "created_at":  "2020-05-07T04:27:17.016Z"  }  ] 
```

## Retrieve all repository storage moves for a project[](#retrieve-all-repository-storage-moves-for-a-project "Permalink")

```
GET /projects/:project_id/repository_storage_moves 
```

默认情况下,因为 API 结果是[分页的](README.html#pagination) ,所以`GET`请求一次返回 20 个结果.

Parameters:

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `project_id` | integer | yes | 项目编号 |

请求示例:

```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/repository_storage_moves" 
```

响应示例:

```
[  {  "id":  1,  "created_at":  "2020-05-07T04:27:17.234Z",  "state":  "scheduled",  "source_storage_name":  "default",  "destination_storage_name":  "storage2",  "project":  {  "id":  1,  "description":  null,  "name":  "project1",  "name_with_namespace":  "John Doe2 / project1",  "path":  "project1",  "path_with_namespace":  "namespace1/project1",  "created_at":  "2020-05-07T04:27:17.016Z"  }  ] 
```

## Get a single project repository storage move[](#get-a-single-project-repository-storage-move "Permalink")

```
GET /project_repository_storage_moves/:repository_storage_id 
```

Parameters:

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `repository_storage_id` | integer | yes | 项目存储库存储移动的标识 |

请求示例:

```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/project_repository_storage_moves/1" 
```

响应示例:

```
{  "id":  1,  "created_at":  "2020-05-07T04:27:17.234Z",  "state":  "scheduled",  "source_storage_name":  "default",  "destination_storage_name":  "storage2",  "project":  {  "id":  1,  "description":  null,  "name":  "project1",  "name_with_namespace":  "John Doe2 / project1",  "path":  "project1",  "path_with_namespace":  "namespace1/project1",  "created_at":  "2020-05-07T04:27:17.016Z"  } 
```

## Get a single repository storage move for a project[](#get-a-single-repository-storage-move-for-a-project "Permalink")

```
GET /projects/:project_id/repository_storage_moves/:repository_storage_id 
```

Parameters:

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `project_id` | integer | yes | 项目编号 |
| `repository_storage_id` | integer | yes | 项目存储库存储移动的标识 |

请求示例:

```
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/1/repository_storage_moves/1" 
```

响应示例:

```
{  "id":  1,  "created_at":  "2020-05-07T04:27:17.234Z",  "state":  "scheduled",  "source_storage_name":  "default",  "destination_storage_name":  "storage2",  "project":  {  "id":  1,  "description":  null,  "name":  "project1",  "name_with_namespace":  "John Doe2 / project1",  "path":  "project1",  "path_with_namespace":  "namespace1/project1",  "created_at":  "2020-05-07T04:27:17.016Z"  } 
```

## Schedule a repository storage move for a project[](#schedule-a-repository-storage-move-for-a-project "Permalink")

```
POST /projects/:project_id/repository_storage_moves 
```

Parameters:

| Attribute | Type | Required | Description |
| --- | --- | --- | --- |
| `project_id` | integer | yes | 项目编号 |
| `destination_storage_name` | string | yes | 目标存储分片的名称 |

请求示例:

```
curl --request POST --header "PRIVATE_TOKEN: <your_access_token>" --header "Content-Type: application/json" \
--data '{"destination_storage_name":"storage2"}' "https://gitlab.example.com/api/v4/projects/1/repository_storage_moves" 
```

响应示例:

```
{  "id":  1,  "created_at":  "2020-05-07T04:27:17.234Z",  "state":  "scheduled",  "source_storage_name":  "default",  "destination_storage_name":  "storage2",  "project":  {  "id":  1,  "description":  null,  "name":  "project1",  "name_with_namespace":  "John Doe2 / project1",  "path":  "project1",  "path_with_namespace":  "namespace1/project1",  "created_at":  "2020-05-07T04:27:17.016Z"  } 
```