1

浏览了 Azure DevOps REST API 文档,并尝试猜测端点失败,似乎没有提及如何查看或创建与给定服务连接关联的“批准和检查”:

https://docs.microsoft.com/en-us/rest/api/azure/devops/serviceendpoint/endpoints?view=azure-devops-rest-6.1

在此处输入图像描述

是否有关于如何执行此操作的任何想法,或者用于批准/检查服务连接的 Rest API 文档在哪里?

对于背景信息,当通过 REST API 创建服务连接时,我们的目标是为服务连接分配检查,以便它使用给定的 YAML 模板,因为服务连接本身已经作为自动化流程的一部分创建。

4

1 回答 1

0

您可以使用未记录的 REST API:

POST https://dev.azure.com/{organization}/{project}/_apis/pipelines/checks/configurations?api-version=5.2-preview.1

以下是其请求正文的示例:

{
    "type": {
        "name": "ExtendsCheck"
    },
    "settings": {
        "extendsChecks": [
            {
                "repositoryType": "git",
                "repositoryName": "{project}/{repository}",
                "repositoryRef": "refs/heads/master",
                "templatePath": "templates.yml"
            }
        ]
    },
    "resource": {
        "type": "endpoint",
        "id": "{service connection id}",
        "name": "{service connection name}"
    }
}

要获取服务连接 ID,您可以使用 REST API Endpoints - Get Service EndpointsEndpoints - Get Service Endpoints By Names

于 2020-10-16T02:07:37.597 回答