diff options
author | belen-pruvost-sonarsource <belen.pruvost@sonarsource.com> | 2020-11-18 17:01:23 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-11-25 20:06:26 +0000 |
commit | 070a36c34b5ca1cd2711e2515bf8558a93940907 (patch) | |
tree | f556da704baf2cf400130331c08a431438d94e82 /sonar-ws/src | |
parent | c3848a7939baa77a7be0eb2dc8413f0e65211926 (diff) | |
download | sonarqube-070a36c34b5ca1cd2711e2515bf8558a93940907.tar.gz sonarqube-070a36c34b5ca1cd2711e2515bf8558a93940907.zip |
SONAR-14057 Update List AzDo projects Action
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 7 |
1 files changed, 6 insertions, 1 deletions
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; |