org.sonarqube.ws.client.almintegrations.AlmIntegrationsService 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.almintegrations;
import javax.annotation.Generated;
import org.sonarqube.ws.AlmIntegrations;
import org.sonarqube.ws.MediaTypes;
import org.sonarqube.ws.Projects;
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 AlmIntegrationsService extends BaseService {
public AlmIntegrationsService(WsConnector wsConnector) {
super(wsConnector, "api/alm_integrations");
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.2
*/
public void checkPat(CheckPatRequest request) {
call(
new GetRequest(path("check_pat"))
.setParam("almSetting", request.getAlmSetting())
.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.2
*/
public Projects.CreateWsResponse importBitbucketserverProject(ImportBitbucketserverProjectRequest request) {
return call(
new PostRequest(path("import_bitbucketserver_project"))
.setParam("almSetting", request.getAlmSetting())
.setParam("projectKey", request.getProjectKey())
.setParam("repositorySlug", request.getRepositorySlug())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser());
}
/**
* 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.2
*/
public Projects.CreateWsResponse importBitbucketcloudProject(ImportBitbucketcloudRepoRequest request) {
return call(
new PostRequest(path("import_bitbucketcloud_repo"))
.setParam("almSetting", request.getAlmSetting())
.setParam("repositorySlug", request.getRepositorySlug())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser());
}
/**
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 8.5
*/
public Projects.CreateWsResponse importGitLabProject(ImportGitLabProjectRequest request) {
return call(
new PostRequest(path("import_gitlab_project"))
.setParam("almSetting", request.getAlmSetting())
.setParam("gitlabProjectId", request.getGitlabProjectId())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser());
}
/**
* This is a POST request.
*
* @see Further information about this action online (including a response example)
*/
public Projects.CreateWsResponse importGithubProject(ImportGithubProjectRequest request) {
return call(
new PostRequest(path("import_github_project"))
.setParam("almSetting", request.getAlmSetting())
.setParam("repositoryKey", request.getRepositoryKey())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser());
}
/**
* This is a GET request.
*
* @see Further information about this action online (including a response example)
*/
public void listGithubOrganizations(ListGithubOrganizationsRequest request) {
call(
new GetRequest(path("list_github_organizations"))
.setParam("almSetting", request.getAlmSetting())
.setParam("token", request.getToken())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser());
}
/**
* 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.6
*/
public Projects.CreateWsResponse importAzureProject(ImportAzureProjectRequest request) {
return call(
new PostRequest(path("import_azure_project"))
.setParam("almSetting", request.getAlmSetting())
.setParam("projectName", request.getProjectName())
.setParam("repositoryName", request.getRepositoryName())
.setMediaType(MediaTypes.JSON),
Projects.CreateWsResponse.parser()
);
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.5
*/
public AlmIntegrations.SearchGitlabReposWsResponse searchGitlabRepos(SearchGitlabReposRequest request) {
return call(
new GetRequest(path("search_gitlab_repos"))
.setParam("almSetting", request.getAlmSetting())
.setParam("projectName", request.getProjectName())
.setMediaType(MediaTypes.JSON),
AlmIntegrations.SearchGitlabReposWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.2
*/
public AlmIntegrations.ListAzureProjectsWsResponse listAzureProjects(ListAzureProjectsRequest request) {
return call(
new GetRequest(path("list_azure_projects"))
.setParam("almSetting", request.getAlmSetting())
.setMediaType(MediaTypes.JSON),
AlmIntegrations.ListAzureProjectsWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.2
*/
public AlmIntegrations.ListBitbucketserverProjectsWsResponse listBitbucketserverProjects(ListBitbucketserverProjectsRequest request) {
return call(
new GetRequest(path("list_bitbucketserver_projects"))
.setParam("almSetting", request.getAlmSetting())
.setMediaType(MediaTypes.JSON),
AlmIntegrations.ListBitbucketserverProjectsWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.2
*/
public AlmIntegrations.SearchBitbucketserverReposWsResponse searchBitbucketserverRepos(SearchBitbucketserverReposRequest request) {
return call(
new GetRequest(path("search_bitbucketserver_repos"))
.setParam("almSetting", request.getAlmSetting())
.setParam("projectName", request.getProjectName())
.setParam("repositoryName", request.getRepositoryName())
.setMediaType(MediaTypes.JSON),
AlmIntegrations.SearchBitbucketserverReposWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a GET request.
*
* @see Further information about this action online (including a response example)
* @since 8.2
*/
public AlmIntegrations.SearchBitbucketcloudReposWsResponse searchBitbucketcloudRepos(SearchBitbucketcloudReposRequest request) {
return call(
new GetRequest(path("search_bitbucketcloud_repos"))
.setParam("almSetting", request.getAlmSetting())
.setMediaType(MediaTypes.JSON),
AlmIntegrations.SearchBitbucketcloudReposWsResponse.parser());
}
/**
* This is part of the internal API.
* This is a POST request.
*
* @see Further information about this action online (including a response example)
* @since 9.7
*/
public void sendGitubCodeScanningAlertWebhookPayload(SendGithubCodeScanningAlertWebhookPayloadRequest request) {
call(
new PostRequest(path("webhook_github"))
.setHeader("X-GitHub-Event", request.getGithubEventHeader())
.setHeader("X-Hub-Signature", request.getGithubSignatureHeader())
.setHeader("X-Hub-Signature-256", request.getGithubSignature256Header())
.setHeader("x-github-hook-installation-target-id", request.getGithubAppId())
.setBody(request.getPayload())
.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.2
*/
public void setPat(SetPatRequest request) {
call(
new PostRequest(path("set_pat"))
.setParam("almSetting", request.getAlmSetting())
.setParam("pat", request.getPat())
.setParam("username", request.getUsername())
.setMediaType(MediaTypes.JSON)
).content();
}
}