diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2021-01-25 16:31:12 -0600 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2021-01-27 20:07:39 +0000 |
commit | bc558d75337b2dc52ecce2c96868f97554c4a037 (patch) | |
tree | fd9178303d4ca54cdbe703dfc51a75dd85dc3745 /sonar-ws/src/main | |
parent | 0592cda7b6c81fe07e68abe65ad8143aff2fb592 (diff) | |
download | sonarqube-bc558d75337b2dc52ecce2c96868f97554c4a037.tar.gz sonarqube-bc558d75337b2dc52ecce2c96868f97554c4a037.zip |
SONAR-14394 Enable project binding for bitbucket cloud
Diffstat (limited to 'sonar-ws/src/main')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-alm_settings.proto | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-alm_settings.proto b/sonar-ws/src/main/protobuf/ws-alm_settings.proto index 57de78e8170..05453664077 100644 --- a/sonar-ws/src/main/protobuf/ws-alm_settings.proto +++ b/sonar-ws/src/main/protobuf/ws-alm_settings.proto @@ -30,6 +30,7 @@ message ListDefinitionsWsResponse { repeated AlmSettingAzure azure = 2; repeated AlmSettingBitbucket bitbucket = 3; repeated AlmSettingGitlab gitlab = 4; + repeated AlmSettingBitbucketCloud bitbucketCloud = 5; } message AlmSettingGithub { @@ -53,6 +54,12 @@ message AlmSettingBitbucket { optional string personalAccessToken = 3; } +message AlmSettingBitbucketCloud { + optional string key = 1; + optional string clientId = 2; + optional string clientSecret = 3; +} + message AlmSettingGitlab { optional string key = 1; optional string personalAccessToken = 2; @@ -75,6 +82,7 @@ enum Alm { azure = 1; bitbucket = 2; gitlab = 3; + bitbucketcloud = 4; } // WS api/alm_settings/list |