From 070a36c34b5ca1cd2711e2515bf8558a93940907 Mon Sep 17 00:00:00 2001 From: belen-pruvost-sonarsource Date: Wed, 18 Nov 2020 17:01:23 +0100 Subject: [PATCH] SONAR-14057 Update List AzDo projects Action --- sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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; -- 2.39.5