我想通过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自动执行此过程?
答案 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
来更改服务连接。
根据我的测试,您需要注意以下事项: