如何通过API修改Azure管道的服务终结点?

时间:2020-08-18 21:50:25

标签: azure-devops azure-pipelines

我想通过API在Azure DevOps中修改管道的服务终结点。

示例:

管道“ build-a-release”使用我的个人服务端点“ hello1”。但我希望它改用现有的服务端点“ my-companys-global-service-endpoint”。

文档https://docs.microsoft.com/en-us/rest/api/azure/devops/pipelines/pipelines?view=azure-devops-rest-6.0没有显示任何“更新”功能,但是我可以在Azure DevOps GUI中更新管道的服务终结点。

如何通过脚本和API自动执行此过程?

Change the service endpoint of a pipeline via the GUI

1 个答案:

答案 0 :(得分:2)

要更新服务端点,应使用Endpoints - Update Service Endpoint API:

PUT https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints/{endpointId}?api-version=6.0-preview.4

要更新管道定义,可以使用Definitions - Update api对其进行更新。捕获网络日志时,您可以看到connectedServiceId参数的properties中有repository。您可以更新connectedServiceId来更改服务连接。

根据我的测试,您需要注意以下事项:

  1. 确保请求标头包含以下各项:

enter image description here

  1. 确保正文中具有正确的“修订”值(最新修订)。