From: belen-pruvost-sonarsource Date: Wed, 18 Nov 2020 16:01:23 +0000 (+0100) Subject: SONAR-14057 Update List AzDo projects Action X-Git-Tag: 8.6.0.39681~69 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=070a36c34b5ca1cd2711e2515bf8558a93940907;p=sonarqube.git SONAR-14057 Update List AzDo projects Action --- 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;