diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2021-01-28 10:20:38 -0600 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-01-29 20:07:55 +0000 |
commit | 00a4a9c77601ff6a1ea9516b7edc77b20f8a17c0 (patch) | |
tree | 2eca53a6874fba3aeda760197dc262608471157e /sonar-ws/src | |
parent | 09bd0ca18c132d56d98be34e9cc5c545e8787655 (diff) | |
download | sonarqube-00a4a9c77601ff6a1ea9516b7edc77b20f8a17c0.tar.gz sonarqube-00a4a9c77601ff6a1ea9516b7edc77b20f8a17c0.zip |
SONAR-14393 Add configuration for Bitbucket Cloud settings
Diffstat (limited to 'sonar-ws/src')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_settings.proto | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-alm_settings.proto b/sonar-ws/src/main/protobuf/ws-alm_settings.proto index 05453664077..8365194621b 100644 --- a/sonar-ws/src/main/protobuf/ws-alm_settings.proto +++ b/sonar-ws/src/main/protobuf/ws-alm_settings.proto @@ -30,7 +30,7 @@ message ListDefinitionsWsResponse { repeated AlmSettingAzure azure = 2; repeated AlmSettingBitbucket bitbucket = 3; repeated AlmSettingGitlab gitlab = 4; - repeated AlmSettingBitbucketCloud bitbucketCloud = 5; + repeated AlmSettingBitbucketCloud bitbucketcloud = 5; } message AlmSettingGithub { @@ -58,6 +58,7 @@ message AlmSettingBitbucketCloud { optional string key = 1; optional string clientId = 2; optional string clientSecret = 3; + optional string workspace = 4; } message AlmSettingGitlab { |