aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws/src
diff options
context:
space:
mode:
authorbelen-pruvost-sonarsource <belen.pruvost@sonarsource.com>2020-11-18 17:01:23 +0100
committersonartech <sonartech@sonarsource.com>2020-11-25 20:06:26 +0000
commit070a36c34b5ca1cd2711e2515bf8558a93940907 (patch)
treef556da704baf2cf400130331c08a431438d94e82 /sonar-ws/src
parentc3848a7939baa77a7be0eb2dc8413f0e65211926 (diff)
downloadsonarqube-070a36c34b5ca1cd2711e2515bf8558a93940907.tar.gz
sonarqube-070a36c34b5ca1cd2711e2515bf8558a93940907.zip
SONAR-14057 Update List AzDo projects Action
Diffstat (limited to 'sonar-ws/src')
-rw-r--r--sonar-ws/src/main/protobuf/ws-alm_integrations.proto7
1 files changed, 6 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
index 03c95177bed..adcd0197e3a 100644
--- a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
+++ b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto
@@ -44,7 +44,7 @@ message ListBitbucketserverProjectsWsResponse {
// WS api/alm_integrations/list_azure_projects
message ListAzureProjectsWsResponse {
- repeated AlmProject projects = 1;
+ repeated AzureProject projects = 1;
}
message BBSRepo {
@@ -67,6 +67,11 @@ message AlmProject {
optional string name = 2;
}
+message AzureProject {
+ optional string name = 1;
+ optional string description = 2;
+}
+
// WS api/alm_integrations/get_github_client_id
message GithubClientIdWsResponse {
optional string clientId = 1;