diff options
author | Belen Pruvost <belen.pruvost@sonarsource.com> | 2020-11-12 14:41:35 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-25 20:06:26 +0000 |
commit | c26bb74de0d1ee9a67c5ea884ac22195451d9a02 (patch) | |
tree | 3e638cdc7e899faba21fe3ff9d99fb8c0ff1b966 /sonar-ws/src/main/protobuf/ws-alm_integrations.proto | |
parent | 753af65e1a768d7df755d0d6e22c5befba558790 (diff) | |
download | sonarqube-c26bb74de0d1ee9a67c5ea884ac22195451d9a02.tar.gz sonarqube-c26bb74de0d1ee9a67c5ea884ac22195451d9a02.zip |
SONAR-14057 Search Ado repos
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-alm_integrations.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 12 |
1 files changed, 12 insertions, 0 deletions
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; |