diff options
author | GitLab Release Tools Bot <delivery-team+release-tools@gitlab.com> | 2022-02-03 23:40:30 +0000 |
---|---|---|
committer | GitLab Release Tools Bot <delivery-team+release-tools@gitlab.com> | 2022-02-03 23:40:30 +0000 |
commit | 871acce6c1e3de3f1ab09f0dcb6bcf822bd138f0 (patch) | |
tree | 0f6970f168ddba8b32efcada5c7407676bb3da15 /lib/api/helpers/integrations_helpers.rb | |
parent | d81e007aec64d5e0aade50cb18847fa9fb6d0e77 (diff) | |
parent | bb9e85e5e3750dd3acf3bf99a455b0a562ec6ace (diff) | |
download | gitlab-ce-14-5-stable.tar.gz |
Merge remote-tracking branch 'dev/14-5-stable' into 14-5-stable14-5-stable
Diffstat (limited to 'lib/api/helpers/integrations_helpers.rb')
-rw-r--r-- | lib/api/helpers/integrations_helpers.rb | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/lib/api/helpers/integrations_helpers.rb b/lib/api/helpers/integrations_helpers.rb index e7fdb6645a5..a67d7717a82 100644 --- a/lib/api/helpers/integrations_helpers.rb +++ b/lib/api/helpers/integrations_helpers.rb @@ -197,6 +197,12 @@ module API desc: 'Bamboo root URL like https://bamboo.example.com' }, { + required: false, + name: :enable_ssl_verification, + type: Boolean, + desc: 'Enable SSL verification' + }, + { required: true, name: :build_key, type: String, @@ -360,7 +366,7 @@ module API required: false, name: :enable_ssl_verification, type: Boolean, - desc: 'Enable SSL verification for communication' + desc: 'Enable SSL verification' } ], 'emails-on-push' => [ @@ -460,6 +466,12 @@ module API desc: 'Jenkins root URL like https://jenkins.example.com' }, { + required: false, + name: :enable_ssl_verification, + type: Boolean, + desc: 'Enable SSL verification' + }, + { required: true, name: :project_name, type: String, @@ -741,6 +753,12 @@ module API desc: 'TeamCity root URL like https://teamcity.example.com' }, { + required: false, + name: :enable_ssl_verification, + type: Boolean, + desc: 'Enable SSL verification' + }, + { required: true, name: :build_type, type: String, |