]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-14057 Search Ado repos
authorBelen Pruvost <belen.pruvost@sonarsource.com>
Thu, 12 Nov 2020 12:41:35 +0000 (14:41 +0200)
committersonartech <sonartech@sonarsource.com>
Wed, 25 Nov 2020 20:06:26 +0000 (20:06 +0000)
sonar-ws/src/main/protobuf/ws-alm_integrations.proto

index 0dfa28e438e6f9654322093fbd39b0a023683acf..03c95177bed22d6ca4c1b4926e41a73ce5c0895e 100644 (file)
@@ -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;