org.sonarqube.ws.client.almsettings.AlmSettingsService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sonar-ws Show documentation
Show all versions of sonar-ws Show documentation
Open source platform for continuous inspection of code quality
The newest version!
/*
* SonarQube
* Copyright (C) 2009-2024 SonarSource SA
* mailto:info AT sonarsource DOT com
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
package org.sonarqube.ws.client.almsettings;
import javax.annotation.Generated;
import org.sonarqube.ws.AlmSettings;
import org.sonarqube.ws.MediaTypes;
import org.sonarqube.ws.client.BaseService;
import org.sonarqube.ws.client.GetRequest;
import org.sonarqube.ws.client.PostRequest;
import org.sonarqube.ws.client.WsConnector;
/**
* @see Further information about this web service online
*/
@Generated("sonar-ws-generator")
public class AlmSettingsService extends BaseService {
public AlmSettingsService(WsConnector wsConnector) {
super(wsConnector, "api/alm_settings");
}
/**
* This is a GET request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public AlmSettings.CountBindingWsResponse countBinding(CountBindingRequest request) {
return call(
new GetRequest(path("count_binding"))
.setParam("almSetting", request.getAlmSetting())
.setMediaType(MediaTypes.JSON),
AlmSettings.CountBindingWsResponse.parser());
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void createAzure(CreateAzureRequest request) {
call(
new PostRequest(path("create_azure"))
.setParam("key", request.getKey())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setParam("url", request.getUrl())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void createGitlab(CreateGitlabRequest request) {
call(
new PostRequest(path("create_gitlab"))
.setParam("key", request.getKey())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setParam("url", request.getUrl())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void createBitbucket(CreateBitbucketRequest request) {
call(
new PostRequest(path("create_bitbucket"))
.setParam("key", request.getKey())
.setParam("url", request.getUrl())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.7
*/
public void createBitbucketCloud(CreateBitbucketCloudRequest request) {
call(
new PostRequest(path("create_bitbucketcloud"))
.setParam("key", request.getKey())
.setParam("clientId", request.getClientId())
.setParam("clientSecret", request.getClientSecret())
.setParam("workspace", request.getWorkspace())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void createGithub(CreateGithubRequest request) {
call(
new PostRequest(path("create_github"))
.setParam("appId", request.getAppId())
.setParam("key", request.getKey())
.setParam("privateKey", request.getPrivateKey())
.setParam("url", request.getUrl())
.setParam("clientId", request.getClientId())
.setParam("clientSecret", request.getClientSecret())
.setParam("webhookSecret", request.getWebhookSecret())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void delete(DeleteRequest request) {
call(
new PostRequest(path("delete"))
.setParam("key", request.getKey())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void deleteBinding(DeleteBindingRequest request) {
call(
new PostRequest(path("delete_binding"))
.setParam("project", request.getProject())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is a GET request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public AlmSettings.GetBindingWsResponse getBinding(GetBindingRequest request) {
return call(
new GetRequest(path("get_binding"))
.setParam("project", request.getProject())
.setMediaType(MediaTypes.JSON),
AlmSettings.GetBindingWsResponse.parser());
}
/**
* This is a GET request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public AlmSettings.ListWsResponse list(ListRequest request) {
return call(
new GetRequest(path("list"))
.setParam("project", request.getProject())
.setMediaType(MediaTypes.JSON),
AlmSettings.ListWsResponse.parser());
}
/**
* This is a GET request.
* @see Further information about this action online (including a response example)
* @since 8.6
*/
public void validate(ValidateRequest request) {
call(
new GetRequest(path("validate"))
.setParam("key", request.getKey()));
}
/**
*
* This is a GET request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public AlmSettings.ListDefinitionsWsResponse listDefinitions() {
return call(
new GetRequest(path("list_definitions")),
AlmSettings.ListDefinitionsWsResponse.parser());
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void setAzureBinding(SetAzureBindingRequest request) {
call(
new PostRequest(path("set_azure_binding"))
.setParam("almSetting", request.getAlmSetting())
.setParam("project", request.getProject())
.setParam("projectName", request.getProjectName())
.setParam("repositoryName", request.getRepositoryName())
.setParam("monorepo", request.getMonorepo())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void setGitlabBinding(SetGitlabBindingRequest request) {
call(
new PostRequest(path("set_gitlab_binding"))
.setParam("almSetting", request.getAlmSetting())
.setParam("project", request.getProject())
.setParam("repository", request.getRepository())
.setParam("monorepo", request.getMonorepo())
.setMediaType(MediaTypes.JSON)).content();
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void setBitbucketBinding(SetBitbucketBindingRequest request) {
call(
new PostRequest(path("set_bitbucket_binding"))
.setParam("almSetting", request.getAlmSetting())
.setParam("project", request.getProject())
.setParam("repository", request.getRepositoryKey())
.setParam("slug", request.getRepositorySlug())
.setParam("monorepo", request.getMonorepo())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is part of the internal API.
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.7
*/
public void setBitbucketcloudBinding(SetBitbucketCloudBindingRequest request) {
call(
new PostRequest(path("set_bitbucketcloud_binding"))
.setParam("almSetting", request.getAlmSetting())
.setParam("monorepo", request.getMonorepo())
.setParam("project", request.getProject())
.setParam("repository", request.getRepository())
.setMediaType(MediaTypes.JSON)
).content();
}
/**
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void setGithubBinding(SetGithubBindingRequest request) {
call(
new PostRequest(path("set_github_binding"))
.setParam("almSetting", request.getAlmSetting())
.setParam("project", request.getProject())
.setParam("repository", request.getRepository())
.setParam("summaryCommentEnabled", request.getSummaryCommentEnabled())
.setParam("monorepo", request.getMonorepo())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void updateAzure(UpdateAzureRequest request) {
call(
new PostRequest(path("update_azure"))
.setParam("key", request.getKey())
.setParam("newKey", request.getNewKey())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setParam("url", request.getUrl())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void updateGitlab(UpdateGitlabRequest request) {
call(
new PostRequest(path("update_gitlab"))
.setParam("key", request.getKey())
.setParam("newKey", request.getNewKey())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setParam("url", request.getUrl())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void updateBitbucket(UpdateBitbucketRequest request) {
call(
new PostRequest(path("update_bitbucket"))
.setParam("key", request.getKey())
.setParam("newKey", request.getNewKey())
.setParam("url", request.getUrl())
.setParam("personalAccessToken", request.getPersonalAccessToken())
.setMediaType(MediaTypes.JSON)).content();
}
/**
*
* This is a POST request.
* @see Further information about this action online (including a response example)
* @since 8.1
*/
public void updateGithub(UpdateGithubRequest request) {
call(
new PostRequest(path("update_github"))
.setParam("appId", request.getAppId())
.setParam("key", request.getKey())
.setParam("newKey", request.getNewKey())
.setParam("privateKey", request.getPrivateKey())
.setParam("url", request.getUrl())
.setParam("clientId", request.getClientId())
.setParam("clientSecret", request.getClientSecret())
.setMediaType(MediaTypes.JSON)).content();
}
}