1

我正在开发 Azure DevOps 扩展,其中包含用于保存秘密 ID/KEY 的服务端点。我的要求是让端点只包含连接名称、ID 和密钥。我已经查看了 Microsoft 提供的端点列表,但找不到合适的选项来满足我的要求。

https://docs.microsoft.com/en-us/azure/devops/pipelines/library/service-endpoints?view=vsts#sep-ssh

我找到的最接近的解决方案如下。但它包含服务器 URL 的输入框(我需要省略它(在此示例中,虽然我没有定义它在弹出对话框中显示的服务器 URL))。请参考下图。

在此处输入图像描述

是否可以从上面的对话框中删除服务器 URL 或者我可以使用更好的端点类型来满足这个要求?请善待与我分享一些光明。

4

1 回答 1

3

您需要创建一个自定义服务类型,这将允许您显示/隐藏各个文本框。您可以在我维护的 Azure DevOps Extension Tasks 中找到一个示例

您可以在其中定义自定义服务端点类型vss-extension.json以及其他扩展点:

{
      "id": "vsts-marketplace-endpoint-type",
      "type": "ms.vss-endpoint.service-endpoint-type",
      "targets": [
        "ms.vss-endpoint.endpoint-types"
      ],
      "properties": {
        "name": "VstsMarketplacePublishing",
        "displayName": "Visual Studio Marketplace",
        "url": {
          "displayName": "Marketplace URL",
          "value": "https://marketplace.visualstudio.com",
          "isVisible": "false" 
        },
        "helpMarkDown": "Required permissions: <ul><li><b>Publish</b>: All accessible organisations, Marketplace (Publish)</li><li><b>Share</b>: All accessible organisations, Marketplace Publish</li><li><b>Install</b>: All accessible organisations or a specific organisation, Extensions (read and manage), Marketplace (acquire)</li><li><b>Query Version</b>: All accessible organisations, Marketplace (read)</li><li><b>Is Valid Extension</b>: All accessible organisations, Marketplace (read)</li></ul><br/><a href='https://www.visualstudio.com/docs/setup-admin/team-services/use-personal-access-tokens-to-authenticate'>More information</a>.",
        "authenticationSchemes": [
          {
            "type": "ms.vss-endpoint.endpoint-auth-scheme-basic",
            "inputDescriptors": [
              {
                "id": "username",
                "name": "Username",
                "description": "Username",
                "inputMode": "textbox",
                "isConfidential": false,
                "validation": {
                  "isRequired": false,
                  "dataType": "string",
                  "maxLength": 300
                },
                "values": {
                  "inputId": "username",
                  "isDisabled": true,
                  "defaultValue": ""
                }
              },
              {
                "id": "password",
                "name": "Personal access token",
                "description": "Azure DevOps personal access token.",
                "inputMode": "passwordbox",
                "isConfidential": true,
                "validation": {
                  "isRequired": true,
                  "dataType": "string",
                  "maxLength": 300
                }
              }
            ]
          }
        ]
      }
    },

您可能会在 GitHub 上找到设置或配置身份验证对话框的其他扩展,有很多. 有用的文档在一篇旧的博客文章中。

于 2018-10-30T08:53:31.027 回答