Endpoints - Share Service Endpoint
跨项目共享服务终结点
PATCH https://dev.azure.com/{organization}/_apis/serviceendpoint/endpoints/{endpointId}?api-version=7.1-preview.4
URI 参数
名称 | 在 | 必需 | 类型 | 说明 |
---|---|---|---|---|
endpoint
|
path | True |
string uuid |
要共享的终结点的终结点 ID |
organization
|
path | True |
string |
Azure DevOps 组织的名称。 |
api-version
|
query | True |
string |
要使用的 API 版本。 这应设置为“7.1-preview.4”才能使用此版本的 API。 |
请求正文
名称 | 类型 | 说明 |
---|---|---|
body |
目标项目的项目引用详细信息 |
响应
名称 | 类型 | 说明 |
---|---|---|
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
名称 | 说明 |
---|---|
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
定义
名称 | 说明 |
---|---|
Project |
|
Service |
ProjectReference
名称 | 类型 | 说明 |
---|---|---|
id |
string |
|
name |
string |
ServiceEndpointProjectReference
名称 | 类型 | 说明 |
---|---|---|
description |
string |
获取或设置服务终结点的说明。 |
name |
string |
获取或设置服务终结点的名称。 |
projectReference |
获取或设置服务终结点的项目引用。 |