diff options
author | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-16 16:55:13 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@sonarsource.com> | 2017-02-17 09:27:54 +0100 |
commit | c00a059069b34fc14716a5fb40f6eaa5a2cddfe3 (patch) | |
tree | cc0f2a5fe2a2440f5b5fbfcdbcbd5a0031cb970f /sonar-ws/src/main/protobuf/ws-projects.proto | |
parent | b4b1940277e877c853fbe2b32696c3cb1d50f816 (diff) | |
download | sonarqube-c00a059069b34fc14716a5fb40f6eaa5a2cddfe3.tar.gz sonarqube-c00a059069b34fc14716a5fb40f6eaa5a2cddfe3.zip |
SONAR-8804 Create api/projects/search
Diffstat (limited to 'sonar-ws/src/main/protobuf/ws-projects.proto')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-projects.proto | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-projects.proto b/sonar-ws/src/main/protobuf/ws-projects.proto index 64fb78379ac..7dcb6260857 100644 --- a/sonar-ws/src/main/protobuf/ws-projects.proto +++ b/sonar-ws/src/main/protobuf/ws-projects.proto @@ -57,3 +57,17 @@ message CreateWsResponse { } } +// WS api/projects/search +message SearchWsResponse { + optional sonarqube.ws.commons.Paging paging = 1; + repeated Component components = 2; + + message Component { + optional string organization = 1; + optional string id = 2; + optional string key = 3; + optional string name = 4; + optional string qualifier = 5; + } +} + |