Pull Request Statuses - Update
更新提取要求狀態集合。 唯一支援的作業類型是 remove
。
此作業允許在一個呼叫中刪除多個狀態。
作業的路徑 remove
應該參考提取要求狀態的識別碼。
例如 path="/1"
,參考識別碼為 1 的提取要求狀態。
PATCH https://dev.azure.com/{organization}/{project}/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses?api-version=4.1-preview.1
URI 參數
名稱 | 位於 | 必要 | 類型 | Description |
---|---|---|---|---|
organization
|
path | True |
string |
Azure DevOps 組織的名稱。 |
pull
|
path | True |
integer int32 |
提取要求的識別碼。 |
repository
|
path | True |
string |
提取要求目標分支的存放庫識別碼。 |
project
|
path |
string |
專案識別碼或專案名稱 |
|
api-version
|
query | True |
string |
要使用的 API 版本。 這應該設定為 '4.1-preview.1' 以使用此版本的 API。 |
要求本文
Media Types: "application/json-patch+json"
名稱 | 類型 | Description |
---|---|---|
from |
string |
要從中複製移動/複製作業的路徑。 |
op |
修補作業 |
|
path |
string |
作業的路徑 |
value |
object |
作業的值。 這是基本類型或 JToken。 |
回應
名稱 | 類型 | Description |
---|---|---|
200 OK |
成功作業 |
安全性
oauth2
Type:
oauth2
Flow:
accessCode
Authorization URL:
https://app.vssps.visualstudio.com/oauth2/authorize&response_type=Assertion
Token URL:
https://app.vssps.visualstudio.com/oauth2/token?client_assertion_type=urn:ietf:params:oauth:client-assertion-type:jwt-bearer&grant_type=urn:ietf:params:oauth:grant-type:jwt-bearer
Scopes
名稱 | Description |
---|---|
vso.code_write | 授與讀取、更新和刪除原始程式碼、存取認可、變更集、分支和其他版本控制成品的相關中繼資料。 也授與建立和管理提取要求和程式碼檢閱的能力,以及透過服務勾點接收版本控制事件的通知。 |
vso.code_status | 授與讀取和寫入認可和提取要求狀態的能力。 |
範例
Sample Request
PATCH https://dev.azure.com/fabrikam/_apis/git/repositories/{repositoryId}/pullRequests/{pullRequestId}/statuses?api-version=4.1-preview.1
[
{
"op": "remove",
"path": "/1",
"from": null,
"value": null
},
{
"op": "remove",
"path": "/2",
"from": null,
"value": null
}
]
Sample Response
定義
名稱 | Description |
---|---|
Json |
JSON 修補作業的 JSON 模型 |
Operation |
修補作業 |
JsonPatchDocument
JSON 修補作業的 JSON 模型
名稱 | 類型 | Description |
---|---|---|
from |
string |
要從中複製移動/複製作業的路徑。 |
op |
修補作業 |
|
path |
string |
作業的路徑 |
value |
object |
作業的值。 這是基本類型或 JToken。 |
Operation
修補作業
名稱 | 類型 | Description |
---|---|---|
add |
string |
|
copy |
string |
|
move |
string |
|
remove |
string |
|
replace |
string |
|
test |
string |