All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.aoju.bus.gitlab.ServicesApi Maven / Gradle / Ivy

/*********************************************************************************
 *                                                                               *
 * The MIT License (MIT)                                                         *
 *                                                                               *
 * Copyright (c) 2015-2022 aoju.org Greg Messner and other contributors.         *
 *                                                                               *
 * Permission is hereby granted, free of charge, to any person obtaining a copy  *
 * of this software and associated documentation files (the "Software"), to deal *
 * in the Software without restriction, including without limitation the rights  *
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell     *
 * copies of the Software, and to permit persons to whom the Software is         *
 * furnished to do so, subject to the following conditions:                      *
 *                                                                               *
 * The above copyright notice and this permission notice shall be included in    *
 * all copies or substantial portions of the Software.                           *
 *                                                                               *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR    *
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,      *
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE   *
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER        *
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, *
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN     *
 * THE SOFTWARE.                                                                 *
 *                                                                               *
 ********************************************************************************/
package org.aoju.bus.gitlab;

import org.aoju.bus.gitlab.services.*;

import javax.ws.rs.core.Form;
import javax.ws.rs.core.Response;

/**
 * Access for the services API.  Currently only the gitlab-ci, HipChatService, Slack, and JIRA service are supported.
 * See GitLab documentation for more info.
 */
public class ServicesApi extends AbstractApi {

    public ServicesApi(GitLabApi gitLabApi) {
        super(gitLabApi);
    }

    /**
     * Activates the gitlab-ci service for a project.
     *
     * 
GitLab Endpoint: PUT /projects/:id/services/gitlab-ci
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param token for authentication * @param projectCIUrl URL of the GitLab-CI project * @throws GitLabApiException if any exception occurs * @deprecated No longer supported */ public void setGitLabCI(Object projectIdOrPath, String token, String projectCIUrl) throws GitLabApiException { final Form formData = new Form(); formData.param("token", token); formData.param("project_url", projectCIUrl); put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "gitlab-ci"); } /** * Deletes the gitlab-ci service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/gitlab-ci
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs * @deprecated No longer supported */ public void deleteGitLabCI(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "gitlab-ci"); } /** * Get the HipChatService notification configuration for a project. * *
GitLab Endpoint: GET /projects/:id/services/hipchat
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a HipChatService instance holding the HipChatService notification settings * @throws GitLabApiException if any exception occurs */ public HipChatService getHipChatService(Object projectIdOrPath) throws GitLabApiException { Response response = get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "hipchat"); return (response.readEntity(HipChatService.class)); } /** * Updates the HipChatService notification settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/hipchat
*

* The following properties on the HipChatService instance are utilized in the update of the settings: *

* pushEvents (optional) - Enable notifications for push events * issuesEvents (optional) - Enable notifications for issue events * confidentialIssuesEvents (optional) - Enable notifications for confidential issue events * MergeRequestsEvents (optional) - Enable notifications for merge request events * tagPushEvents (optional) - Enable notifications for tag push events * noteEvents (optional) - Enable notifications for note events * confidentialNoteEvents (optional) - Enable notifications for confidential note events * pipelineEvents (optional) - Enable notifications for pipeline events * token (required) - The room token * color (optional) - The room color * notify (optional) - Enable notifications * room (optional) - Room name or ID * apiVersion (optional) - Leave blank for default (v2) * server (false) - Leave blank for default. https://hipchat.example.com * notifyOnlyBrokenPipelines (optional) - Send notifications for broken pipelines * * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param hipChat the HipChatService instance holding the settings * @return a HipChatService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public HipChatService updateHipChatService(Object projectIdOrPath, HipChatService hipChat) throws GitLabApiException { GitLabApiForm formData = hipChat.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "hipchat"); return (response.readEntity(HipChatService.class)); } /** * Activates HipChatService notifications. * *

GitLab Endpoint: PUT /projects/:id/services/hipchat
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param token for authentication * @param room HipChatService Room * @param server HipChatService Server URL * @throws GitLabApiException if any exception occurs * @deprecated replaced with {@link #updateHipChatService(Object, HipChatService) updateHipChat} method */ public void setHipChat(Object projectIdOrPath, String token, String room, String server) throws GitLabApiException { GitLabApiForm formData = new GitLabApiForm() .withParam("token", token) .withParam("room", room) .withParam("server", server); put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "hipchat"); } /** * Deletes the HipChatService service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/hipchat
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs * @deprecated replaced with {@link #deleteHipChatService(Object) updateHipChat} method */ public void deleteHipChat(Object projectIdOrPath) throws GitLabApiException { deleteHipChatService(projectIdOrPath); } /** * Deletes the HipChatService service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/hipchat
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteHipChatService(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "hipchat"); } /** * Get the Slack notification settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/slack
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a SlackService instance holding the Slack notification settings * @throws GitLabApiException if any exception occurs */ public SlackService getSlackService(Object projectIdOrPath) throws GitLabApiException { Response response = get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "slack"); return (response.readEntity(SlackService.class)); } /** * Updates the Slack notification settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/slack
*

* The following properties on the SlackService instance are utilized in the update of the settings: *

* webhook (required) - https://hooks.slack.com/services/... * username (optional) - username * defaultChannel (optional) - Default channel to use if others are not configured * notifyOnlyBrokenPipelines (optional) - Send notifications for broken pipelines * notifyOnlyDefault_branch (optional) - Send notifications only for the default branch * pushEvents (optional) - Enable notifications for push events * issuesEvents (optional) - Enable notifications for issue events * confidentialIssuesEvents (optional) - Enable notifications for confidential issue events * mergeRequestsEvents (optional) - Enable notifications for merge request events * tagPushEvents (optional) - Enable notifications for tag push events * noteEvents (optional) - Enable notifications for note events * confidentialNoteEvents (optional) - Enable notifications for confidential note events * pipelineEvents (optional) - Enable notifications for pipeline events * wikiPageEvents (optional) - Enable notifications for wiki page events * pushChannel (optional) - The name of the channel to receive push events notifications * issueChannel (optional) - The name of the channel to receive issues events notifications * confidentialIssueChannel (optional) - The name of the channel to receive confidential issues events notifications * mergeRequestChannel (optional) - The name of the channel to receive merge request events notifications * noteChannel (optional) - The name of the channel to receive note events notifications * confidentialNoteChannel (optional) - The name of the channel to receive confidential note events notifications * tagPushChannel (optional) - The name of the channel to receive tag push events notifications * pipelineChannel (optional) - The name of the channel to receive pipeline events notifications * wikiPageChannel (optional) - The name of the channel to receive wiki page events notifications * * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param slackNotifications the SlackService instance holding the settings * @return a SlackService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public SlackService updateSlackService(Object projectIdOrPath, SlackService slackNotifications) throws GitLabApiException { GitLabApiForm formData = slackNotifications.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "slack"); return (response.readEntity(SlackService.class)); } /** * Deletes the Slack notifications service for a project. * *

GitLab Endpoint: DELETE /projects/:id/services/slack
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteSlackService(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "slack"); } /** * Get the JIRA service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/jira
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a JiraService instance holding the JIRA service settings * @throws GitLabApiException if any exception occurs */ public JiraService getJiraService(Object projectIdOrPath) throws GitLabApiException { Response response = get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "jira"); return (response.readEntity(JiraService.class)); } /** * Updates the JIRA service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/jira
*

* The following properties on the JiraService instance are utilized in the update of the settings: *

* mergeRequestsEvents (optional) - Enable notifications for merge request events * commitEvents (optional) - Enable notifications for commit events * url (required) - The URL to the JIRA project which is being linked to this GitLab project, e.g., https://jira.example.com. * apiUrl (optional) - The JIRA API url if different than url * projectKey (optional) - The short identifier for your JIRA project, all uppercase, e.g., PROJ. * username (required) - The username of the user created to be used with GitLab/JIRA. * password (required) - The password of the user created to be used with GitLab/JIRA. * jiraIssueTransitionId (optional) - The ID of a transition that moves issues to a closed state. * * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param jira the JiraService instance holding the settings * @return a JiraService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public JiraService updateJiraService(Object projectIdOrPath, JiraService jira) throws GitLabApiException { GitLabApiForm formData = jira.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "jira"); return (response.readEntity(JiraService.class)); } /** * Deletes the JIRA service for a project. * *

GitLab Endpoint: DELETE /projects/:id/services/jira
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteJiraService(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "jira"); } /** * Get the ExternalWiki service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/external-wiki
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a ExternalWikiService instance holding the External Wiki service settings * @throws GitLabApiException if any exception occurs */ public ExternalWikiService getExternalWikiService(Object projectIdOrPath) throws GitLabApiException { Response response = this.get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "external-wiki"); return (response.readEntity(ExternalWikiService.class)); } /** * Updates the ExternalWikiService service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/external-wiki
*

* The following properties on the JiraService instance are utilized in the update of the settings: *

* external_wiki_url (required) - The URL to the External Wiki project which is being linked to this GitLab project, e.g., http://www.wikidot.com/ * * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param externalWiki the ExternalWikiService instance holding the settings * @return a ExternalWikiService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public ExternalWikiService updateExternalWikiService(Object projectIdOrPath, ExternalWikiService externalWiki) throws GitLabApiException { GitLabApiForm formData = externalWiki.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "external-wiki"); return (response.readEntity(ExternalWikiService.class)); } /** * Deletes the ExternalWiki service for a project. * *

GitLab Endpoint: DELETE /projects/:id/services/external-wiki
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteExternalWikiService(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "external-wiki"); } /** * Get the Mattermost service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/mattermost
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a MattermostService instance holding the Mattermost service settings * @throws GitLabApiException if any exception occurs */ public MattermostService getMattermostService(Object projectIdOrPath) throws GitLabApiException { Response response = this.get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "mattermost"); return (response.readEntity(MattermostService.class)); } /** * Updates the Mattermost service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/mattermost
*

* The following properties on the MattermostService instance are utilized in the update of the settings: *

* webhook (required) - https://hooks.slack.com/services/... * username (optional) - username * defaultChannel (optional) - Default channel to use if others are not configured * notifyOnlyBrokenPipelines (optional) - Send notifications for broken pipelines * notifyOnlyDefault_branch (optional) - Send notifications only for the default branch * pushEvents (optional) - Enable notifications for push events * issuesEvents (optional) - Enable notifications for issue events * confidentialIssuesEvents (optional) - Enable notifications for confidential issue events * mergeRequestsEvents (optional) - Enable notifications for merge request events * tagPushEvents (optional) - Enable notifications for tag push events * noteEvents (optional) - Enable notifications for note events * confidentialNoteEvents (optional) - Enable notifications for confidential note events * pipelineEvents (optional) - Enable notifications for pipeline events * wikiPageEvents (optional) - Enable notifications for wiki page events * pushChannel (optional) - The name of the channel to receive push events notifications * issueChannel (optional) - The name of the channel to receive issues events notifications * confidentialIssueChannel (optional) - The name of the channel to receive confidential issues events notifications * mergeRequestChannel (optional) - The name of the channel to receive merge request events notifications * noteChannel (optional) - The name of the channel to receive note events notifications * confidentialNoteChannel (optional) - The name of the channel to receive confidential note events notifications * tagPushChannel (optional) - The name of the channel to receive tag push events notifications * pipelineChannel (optional) - The name of the channel to receive pipeline events notifications * wikiPageChannel (optional) - The name of the channel to receive wiki page events notifications * * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param mattermostNotifications the MattermostService instance holding the settings * @return a MattermostService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public MattermostService updateMattermostService(Object projectIdOrPath, MattermostService mattermostNotifications) throws GitLabApiException { GitLabApiForm formData = mattermostNotifications.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "mattermost"); return (response.readEntity(MattermostService.class)); } /** * Deletes the Mattermost service for a project. * *

GitLab Endpoint: DELETE /projects/:id/services/external-wiki
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteMattermostService(Object projectIdOrPath) throws GitLabApiException { Response.Status expectedStatus = (isApiVersion(GitLabApi.ApiVersion.V3) ? Response.Status.OK : Response.Status.NO_CONTENT); delete(expectedStatus, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "mattermost"); } /** * Get the Bugzilla service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/bugzilla
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a BugzillaService instance holding the External Wiki service settings * @throws GitLabApiException if any exception occurs */ public BugzillaService getBugzillaService(Object projectIdOrPath) throws GitLabApiException { Response response = this.get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "bugzilla"); return (response.readEntity(BugzillaService.class)); } /** * Updates the Bugzilla service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/bugzilla
*

* The following properties on the BugzillaService instance are utilized in the update of the settings: *

* description (optional), description * issuesUrl (required), issue url * newIssueUrl (required), new Issue url * projectUrl (required), project url * pushEvents (optional) - Enable notifications for push events * title (optional), the title for the custom issue tracker *

* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param bugzillaService the BugzillaService instance holding the settings * @return a BugzillaService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public BugzillaService updateBugzillaService(Object projectIdOrPath, BugzillaService bugzillaService) throws GitLabApiException { GitLabApiForm formData = bugzillaService.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "bugzilla"); return (response.readEntity(BugzillaService.class)); } /** * Deletes the Bugzilla service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/bugzilla
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteBugzillaService(Object projectIdOrPath) throws GitLabApiException { delete(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "bugzilla"); } /** * Get the Custom Issue Tracker service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/custom_issue_tracker
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a ExternalWikiService instance holding the External Wiki service settings * @throws GitLabApiException if any exception occurs */ public CustomIssueTrackerService getCustomIssueTrackerService(Object projectIdOrPath) throws GitLabApiException { Response response = this.get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "custom-issue-tracker"); return (response.readEntity(CustomIssueTrackerService.class)); } /** * Updates the Custom Issue Tracker service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/custom_issue_tracker
*

* The following properties on the CustomIssueTrackerService instance are utilized in the update of the settings: *

* description (optional), description * issuesUrl (required), issue url * newIssueUrl (required), new Issue url * projectUrl (required), project url * pushEvents (optional) - Enable notifications for push events * title (optional), the title for the custom issue tracker *

* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param customIssueTracker the CustomIssueTrackerService instance holding the settings * @return a CustomIssueTrackerService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public CustomIssueTrackerService updateCustomIssueTrackerService(Object projectIdOrPath, CustomIssueTrackerService customIssueTracker) throws GitLabApiException { GitLabApiForm formData = customIssueTracker.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "custom-issue-tracker"); return (response.readEntity(CustomIssueTrackerService.class)); } /** * Deletes the Custom Issue Tracker service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/custom_issue_tracker
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteCustomIssueTrackerService(Object projectIdOrPath) throws GitLabApiException { delete(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "custom-issue-tracker"); } /** * Get Emails on push service settings for a project. * *
GitLab Endpoint: GET /projects/:id/services/emails-on-push
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @return a EmailOnPushService instance holding the Email on push settings * @throws GitLabApiException if any exception occurs */ public EmailOnPushService getEmailOnPushService(Object projectIdOrPath) throws GitLabApiException { Response response = this.get(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "emails-on-push"); return (response.readEntity(EmailOnPushService.class)); } /** * Updates the EmailsOnPush service settings for a project. * *
GitLab Endpoint: PUT /projects/:id/services/emails-on-push
*

* The following properties on the EmailOnPushService instance are utilized in the update of the settings: *

* recipients (required), Emails separated by whitespace * disable_diffs (optional), Disable code diffs * send_from_committer_email (optional), Send from committer * push_events (optional), Enable notifications for push events * tag_push_events(optional), Enable notifications for tag push events * branches_to_be_notified (optional), Branches to send notifications for. Valid options are "all", "default", * "protected", and "default_and_protected". Notifications are always fired * for tag pushes. The default value is "all" *

* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @param emailsOnPush the EmailOnPushService instance holding the settings * @return a EmailOnPushService instance holding the newly updated settings * @throws GitLabApiException if any exception occurs */ public EmailOnPushService updateEmailOnPushService(Object projectIdOrPath, EmailOnPushService emailsOnPush) throws GitLabApiException { GitLabApiForm formData = emailsOnPush.servicePropertiesForm(); Response response = put(Response.Status.OK, formData.asMap(), "projects", getProjectIdOrPath(projectIdOrPath), "services", "emails-on-push"); return (response.readEntity(EmailOnPushService.class)); } /** * Deletes the Emails on push service for a project. * *
GitLab Endpoint: DELETE /projects/:id/services/emails-on-push
* * @param projectIdOrPath id, path of the project, or a Project instance holding the project ID or path * @throws GitLabApiException if any exception occurs */ public void deleteEmailonPushService(Object projectIdOrPath) throws GitLabApiException { delete(Response.Status.OK, null, "projects", getProjectIdOrPath(projectIdOrPath), "services", "emails-on-push"); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy