diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2020-06-29 08:22:22 -0500 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2020-07-01 20:05:53 +0000 |
commit | db5fc175198e954404be2a9d73d63b7e3c19af49 (patch) | |
tree | 537270857368638dc50152bddc9345f64516827c /sonar-ws/src | |
parent | 46d5b7c51b9c41d35d90416281144385555b9059 (diff) | |
download | sonarqube-db5fc175198e954404be2a9d73d63b7e3c19af49.tar.gz sonarqube-db5fc175198e954404be2a9d73d63b7e3c19af49.zip |
SONAR-13475 - List Github Enterprise repositories API (#2883)
fixup! SONAR-13475 - List Github Enterprise repositories API (#2883)
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_integrations.proto | 14 |
1 files changed, 14 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 d595065e712..d2f81d8d1ef 100644 --- a/sonar-ws/src/main/protobuf/ws-alm_integrations.proto +++ b/sonar-ws/src/main/protobuf/ws-alm_integrations.proto @@ -65,3 +65,17 @@ message GithubEnterpriseOrganization { optional string key = 1; optional string name = 2; } + +// WS api/alm_integrations/list_github_enterprise_repositories +message ListGithubEnterpriseRepositoriesWsResponse { + optional sonarqube.ws.commons.Paging paging = 1; + repeated GithubEnterpriseRepository repositories = 2; +} + +message GithubEnterpriseRepository { + optional int64 id = 1; + optional string key = 2; + optional string name = 3; + optional string url = 4; + optional string sqProjectKey = 5; +} |