共用方式為


Endpoints - Share Service Endpoint

跨專案共用服務端點

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

URI 參數

名稱 位於 必要 類型 Description
endpointId
path True

string

uuid

要共用之端點的端點識別碼

organization
path True

string

Azure DevOps 組織的名稱。

api-version
query True

string

要使用的 API 版本。 這應該設定為 '7.1-preview.4',以使用此版本的 API。

要求本文

名稱 類型 Description
body

ServiceEndpointProjectReference[]

目標專案的專案參考詳細資料

回應

名稱 類型 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.serviceendpoint_manage 授與讀取、查詢及管理服務端點的能力。

範例

Share service endpoint

Sample Request

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

[
  {
    "projectReference": {
      "id": "184fda7e-3559-4b3c-afa0-1b6998330f84",
      "name": "TestProject2"
    },
    "name": "MySharedServiceConnection"
  }
]

Sample Response

定義

名稱 Description
ProjectReference
ServiceEndpointProjectReference

ProjectReference

名稱 類型 Description
id

string

name

string

ServiceEndpointProjectReference

名稱 類型 Description
description

string

取得或設定服務端點的描述。

name

string

取得或設定服務端點的名稱。

projectReference

ProjectReference

取得或設定服務端點的專案參考。