From c26bb74de0d1ee9a67c5ea884ac22195451d9a02 Mon Sep 17 00:00:00 2001 From: Belen Pruvost Date: Thu, 12 Nov 2020 14:41:35 +0200 Subject: [PATCH] SONAR-14057 Search Ado repos --- sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto index 0dfa28e438e..03c95177bed 100644 --- a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto +++ b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto @@ -32,6 +32,11 @@ message SearchBitbucketserverReposWsResponse { repeated BBSRepo repositories = 2; } +// WS api/alm_integrations/search_azure_repos +message SearchAzureReposWsResponse { + repeated AzureRepo repositories = 2; +} + // WS api/alm_integrations/list_bibucketserver_projects message ListBitbucketserverProjectsWsResponse { repeated AlmProject projects = 1; @@ -50,6 +55,13 @@ message BBSRepo { optional string projectKey = 5; } +message AzureRepo { + optional string name = 1; + optional string projectName = 2; + optional string sqProjectKey = 3; + optional string projectKey = 4; +} + message AlmProject { optional string key = 1; optional string name = 2; -- 2.39.5