Class MergeRequestApi
- All Implemented Interfaces:
Constants
public class MergeRequestApi extends AbstractApi
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gitlab4j.api.Constants
Constants.ActionType, Constants.ApplicationScope, Constants.ArchiveFormat, Constants.AutoDevopsDeployStrategy, Constants.BuildGitStrategy, Constants.CommitBuildState, Constants.DeploymentOrderBy, Constants.DeploymentStatus, Constants.DeployTokenScope, Constants.Encoding, Constants.EpicOrderBy, Constants.GroupOrderBy, Constants.GroupSearchScope, Constants.ImpersonationState, Constants.IssueOrderBy, Constants.IssueScope, Constants.IssueState, Constants.JobScope, Constants.LineType, Constants.MergeRequestOrderBy, Constants.MergeRequestScope, Constants.MergeRequestSearchIn, Constants.MergeRequestState, Constants.MilestoneState, Constants.PipelineOrderBy, Constants.PipelineScope, Constants.ProjectOrderBy, Constants.ProjectSearchScope, Constants.SearchScope, Constants.SortOrder, Constants.SquashOption, Constants.StateEvent, Constants.TagOrderBy, Constants.TargetType, Constants.TodoAction, Constants.TodoState, Constants.TodoType, Constants.TokenType
-
Field Summary
Fields inherited from class org.gitlab4j.api.AbstractApi
gitLabApi
Fields inherited from interface org.gitlab4j.api.Constants
NEXT_PAGE_HEADER, PAGE_HEADER, PAGE_PARAM, PER_PAGE, PER_PAGE_PARAM, PREV_PAGE_HEADER, TOTAL_HEADER, TOTAL_PAGES_HEADER
-
Constructor Summary
Constructors Constructor Description MergeRequestApi(GitLabApi gitLabApi)
-
Method Summary
Modifier and Type Method Description MergeRequest
acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Merge changes to the merge request.MergeRequest
acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String mergeCommitMessage, Boolean shouldRemoveSourceBranch, Boolean mergeWhenPipelineSucceeds)
Merge changes to the merge request.MergeRequest
acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String mergeCommitMessage, Boolean shouldRemoveSourceBranch, Boolean mergeWhenPipelineSucceeds, String sha)
Merge changes to the merge request.MergeRequest
acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, AcceptMergeRequestParams params)
Merge changes to the merge request.MergeRequest
approveMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String sha)
Approve a merge request.MergeRequest
cancelMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Cancel merge when pipeline succeeds.ApprovalRule
createApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer projectRuleId, ApprovalRuleParams params)
Create a merge request level approval rule.MergeRequest
createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId)
Creates a merge request and optionally assigns a reviewer to it.MergeRequest
createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId, Integer targetProjectId, String[] labels, Integer milestoneId, Boolean removeSourceBranch)
Creates a merge request.MergeRequest
createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId, Integer targetProjectId, String[] labels, Integer milestoneId, Boolean removeSourceBranch, Boolean squash)
Creates a merge request.MergeRequest
createMergeRequest(Object projectIdOrPath, MergeRequestParams params)
Creates a merge request.Pipeline
createMergeRequestPipeline(Object projectIdOrPath, Integer mergeRequestIid)
Create a new pipeline for a merge request.void
deleteApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer approvalRuleId)
Delete the specified the merge request level approval rule.void
deleteMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Only for admins and project owners.List<ApprovalRule>
getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid)
Get a list of the merge request level approval rules.Pager<ApprovalRule>
getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager of the merge request level approval rules.Stream<ApprovalRule>
getApprovalRulesStream(Object projectIdOrPath, Integer mergeRequestIid)
Get a Stream of the merge request level approval rules.MergeRequest
getApprovals(Object projectIdOrPath, Integer mergeRequestIid)
Get the merge request with approval information.ApprovalState
getApprovalState(Object projectIdOrPath, Integer mergeRequestIid)
Get the approval state of a merge request.List<Issue>
getApprovalStatus(Object projectIdOrPath, Integer mergeRequestIid)
Get list containing all the issues that would be closed by merging the provided merge request.List<Issue>
getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid)
Get list containing all the issues that would be closed by merging the provided merge request.Pager<Issue>
getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager containing all the issues that would be closed by merging the provided merge request.List<Issue>
getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid, int page, int perPage)
Get list containing all the issues that would be closed by merging the provided merge request.Stream<Issue>
getClosesIssuesStream(Object projectIdOrPath, Integer mergeRequestIid)
Get Stream containing all the issues that would be closed by merging the provided merge request.List<Commit>
getCommits(Object projectIdOrPath, int mergeRequestIid)
Get a list of merge request commits.Pager<Commit>
getCommits(Object projectIdOrPath, int mergeRequestIid, int itemsPerPage)
Get a Pager of merge request commits.List<Commit>
getCommits(Object projectIdOrPath, int mergeRequestIid, int page, int perPage)
Get a list of merge request commits.Stream<Commit>
getCommitsStream(Object projectIdOrPath, int mergeRequestIid)
Get a Stream of merge request commits.MergeRequest
getMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Get information about a single merge request.MergeRequest
getMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, Boolean renderHtml, Boolean includeDivergedCommitCount, Boolean includeRebaseInProgress)
Get information about a single merge request.MergeRequest
getMergeRequestApprovals(Object projectIdOrPath, Integer mergeRequestIid)
Get the merge request with approval information.MergeRequest
getMergeRequestChanges(Object projectIdOrPath, Integer mergeRequestIid)
Get merge request with changes information.MergeRequestDiff
getMergeRequestDiff(Object projectIdOrPath, Integer mergeRequestIid, Integer versionId)
Get a single merge request diff version.List<MergeRequestDiff>
getMergeRequestDiffs(Object projectIdOrPath, Integer mergeRequestIid)
Get a list of merge request diff versions.Pager<MergeRequestDiff>
getMergeRequestDiffs(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager of merge request diff versions.Stream<MergeRequestDiff>
getMergeRequestDiffsStream(Object projectIdOrPath, Integer mergeRequestIid)
Get a Stream of merge request diff versions.List<Pipeline>
getMergeRequestPipelines(Object projectIdOrPath, Integer mergeRequestIid)
Get a list of pipelines for a merge request.Pager<Pipeline>
getMergeRequestPipelines(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager of pipelines for a merge request.Stream<Pipeline>
getMergeRequestPipelinesStream(Object projectIdOrPath, Integer mergeRequestIid)
Get a Stream of pipelines for a merge request.List<MergeRequest>
getMergeRequests(Object projectIdOrPath)
Get all merge requests for the specified project.Pager<MergeRequest>
getMergeRequests(Object projectIdOrPath, int itemsPerPage)
Get all merge requests for the specified project.List<MergeRequest>
getMergeRequests(Object projectIdOrPath, int page, int perPage)
Get all merge requests for the specified project.List<MergeRequest>
getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state)
Get all merge requests with a specific state for the specified project.Pager<MergeRequest>
getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state, int itemsPerPage)
Get all merge requests for the specified project.List<MergeRequest>
getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state, int page, int perPage)
Get all merge requests for the specified project.List<MergeRequest>
getMergeRequests(MergeRequestFilter filter)
Get all merge requests matching the filter.Pager<MergeRequest>
getMergeRequests(MergeRequestFilter filter, int itemsPerPage)
Get all merge requests matching the filter.List<MergeRequest>
getMergeRequests(MergeRequestFilter filter, int page, int perPage)
Get all merge requests matching the filter.Stream<MergeRequest>
getMergeRequestsStream(Object projectIdOrPath)
Get all merge requests for the specified project as a StreamStream<MergeRequest>
getMergeRequestsStream(Object projectIdOrPath, Constants.MergeRequestState state)
Get all merge requests with a specific state for the specified project as a Stream.Stream<MergeRequest>
getMergeRequestsStream(MergeRequestFilter filter)
Get all merge requests matching the filter as a Stream.Optional<MergeRequest>
getOptionalMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Get information about a single merge request as an Optional instance.Optional<MergeRequest>
getOptionalMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, Boolean renderHtml, Boolean includeDivergedCommitCount, Boolean includeRebaseInProgress)
Get information about a single merge request as an Optional instance.Optional<MergeRequestDiff>
getOptionalMergeRequestDiff(Object projectIdOrPath, Integer mergeRequestIid, Integer versionId)
Get a single merge request diff version as an Optional instance.List<Participant>
getParticipants(Object projectIdOrPath, Integer mergeRequestIid)
Get list of participants of merge request.Pager<Participant>
getParticipants(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage)
Get a Pager of the participants of merge request.List<Participant>
getParticipants(Object projectIdOrPath, Integer mergeRequestIid, int page, int perPage)
Get list of participants of merge request and in the specified page range.Stream<Participant>
getParticipantsStream(Object projectIdOrPath, Integer mergeRequestIid)
Get Stream of participants of merge request.MergeRequest
getRebaseStatus(Object projectIdOrPath, Integer mergeRequestIid)
Get the merge request info containing the status of a merge request rebase.MergeRequest
rebaseMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Automatically rebase the source_branch of the merge request against its target_branch.MergeRequest
unapproveMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)
Unapprove a merge request.ApprovalRule
updateApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer approvalRuleId, ApprovalRuleParams params)
Update the specified the merge request level approval rule.MergeRequest
updateMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String targetBranch, String title, Integer assigneeId, String description, Constants.StateEvent stateEvent, String labels, Integer milestoneId, Boolean removeSourceBranch, Boolean squash, Boolean discussionLocked, Boolean allowCollaboration)
Updates an existing merge request.MergeRequest
updateMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, MergeRequestParams params)
Updates an existing merge request.Methods inherited from class org.gitlab4j.api.AbstractApi
addFormParam, addFormParam, delete, delete, get, get, getApiClient, getApiVersion, getDefaultPerPage, getDefaultPerPageParam, getDefaultPerPageParam, getGroupIdOrPath, getLabelIdOrName, getPageQueryParams, getPageQueryParams, getPerPageQueryParam, getProjectIdOrPath, getUserIdOrUsername, getWithAccepts, handle, head, isApiVersion, post, post, post, post, post, put, put, put, putUpload, putUpload, putWithFormData, upload, upload, upload, urlEncode, validate
-
Constructor Details
-
MergeRequestApi
-
-
Method Details
-
getMergeRequests
Get all merge requests matching the filter.GitLab Endpoint: GET /merge_requests
- Parameters:
filter
- a MergeRequestFilter instance with the filter settings- Returns:
- all merge requests for the specified project matching the filter
- Throws:
GitLabApiException
- if any exception occursput
-
getMergeRequests
public List<MergeRequest> getMergeRequests(MergeRequestFilter filter, int page, int perPage) throws GitLabApiExceptionGet all merge requests matching the filter.GitLab Endpoint: GET /merge_requests
- Parameters:
filter
- a MergeRequestFilter instance with the filter settingspage
- the page to getperPage
- the number of MergeRequest instances per page- Returns:
- all merge requests for the specified project matching the filter
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public Pager<MergeRequest> getMergeRequests(MergeRequestFilter filter, int itemsPerPage) throws GitLabApiExceptionGet all merge requests matching the filter.GitLab Endpoint: GET /merge_requests
- Parameters:
filter
- a MergeRequestFilter instance with the filter settingsitemsPerPage
- the number of MergeRequest instances that will be fetched per page- Returns:
- all merge requests for the specified project matching the filter
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestsStream
public Stream<MergeRequest> getMergeRequestsStream(MergeRequestFilter filter) throws GitLabApiExceptionGet all merge requests matching the filter as a Stream.GitLab Endpoint: GET /merge_requests
- Parameters:
filter
- a MergeRequestFilter instance with the filter settings- Returns:
- a Stream containing all the merge requests for the specified project matching the filter
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
Get all merge requests for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instance- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public List<MergeRequest> getMergeRequests(Object projectIdOrPath, int page, int perPage) throws GitLabApiExceptionGet all merge requests for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancepage
- the page to getperPage
- the number of MergeRequest instances per page- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public Pager<MergeRequest> getMergeRequests(Object projectIdOrPath, int itemsPerPage) throws GitLabApiExceptionGet all merge requests for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instanceitemsPerPage
- the number of MergeRequest instances that will be fetched per page- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestsStream
public Stream<MergeRequest> getMergeRequestsStream(Object projectIdOrPath) throws GitLabApiExceptionGet all merge requests for the specified project as a StreamGitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instance- Returns:
- a Stream with all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public List<MergeRequest> getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state) throws GitLabApiExceptionGet all merge requests with a specific state for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests?state=:state
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancestate
- the state parameter can be used to get only merge requests with a given state (opened, closed, or merged) or all of them (all).- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public List<MergeRequest> getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state, int page, int perPage) throws GitLabApiExceptionGet all merge requests for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancestate
- the state parameter can be used to get only merge requests with a given state (opened, closed, or merged) or all of them (all).page
- the page to getperPage
- the number of MergeRequest instances per page- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequests
public Pager<MergeRequest> getMergeRequests(Object projectIdOrPath, Constants.MergeRequestState state, int itemsPerPage) throws GitLabApiExceptionGet all merge requests for the specified project.GitLab Endpoint: GET /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancestate
- the state parameter can be used to get only merge requests with a given state (opened, closed, or merged) or all of them (all).itemsPerPage
- the number of MergeRequest instances that will be fetched per page- Returns:
- all merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestsStream
public Stream<MergeRequest> getMergeRequestsStream(Object projectIdOrPath, Constants.MergeRequestState state) throws GitLabApiExceptionGet all merge requests with a specific state for the specified project as a Stream.GitLab Endpoint: GET /projects/:id/merge_requests?state=:state
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancestate
- the state parameter can be used to get only merge requests with a given state (opened, closed, or merged) or all of them (all).- Returns:
- a Stream with all the merge requests for the specified project
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequest
public MergeRequest getMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet information about a single merge request.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- the specified MergeRequest instance
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequest
public MergeRequest getMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, Boolean renderHtml, Boolean includeDivergedCommitCount, Boolean includeRebaseInProgress) throws GitLabApiExceptionGet information about a single merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestrenderHtml
- if true response includes rendered HTML for title and description, can be nullincludeDivergedCommitCount
- if true response includes the commits behind the target branch, can be nullincludeRebaseInProgress
- if true response includes whether a rebase operation is in progress, can be null- Returns:
- a MergeRequest instance as specified by the parameters
- Throws:
GitLabApiException
- if any exception occurs
-
getOptionalMergeRequest
public Optional<MergeRequest> getOptionalMergeRequest(Object projectIdOrPath, Integer mergeRequestIid)Get information about a single merge request as an Optional instance.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- the specified MergeRequest as an Optional instance instance
-
getOptionalMergeRequest
public Optional<MergeRequest> getOptionalMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, Boolean renderHtml, Boolean includeDivergedCommitCount, Boolean includeRebaseInProgress)Get information about a single merge request as an Optional instance.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestrenderHtml
- if true response includes rendered HTML for title and description, can be nullincludeDivergedCommitCount
- if true response includes the commits behind the target branch, can be nullincludeRebaseInProgress
- if true response includes whether a rebase operation is in progress, can be null- Returns:
- the specified MergeRequest as an Optional instance instance
-
getCommits
public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid) throws GitLabApiExceptionGet a list of merge request commits.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/commits
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a list containing the commits for the specified merge request
- Throws:
GitLabApiException
- GitLabApiException if any exception occurs during execution
-
getCommits
public List<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int page, int perPage) throws GitLabApiExceptionGet a list of merge request commits.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/commits
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestpage
- the page to getperPage
- the number of commits per page- Returns:
- a list containing the commits for the specified merge request
- Throws:
GitLabApiException
- GitLabApiException if any exception occurs during execution
-
getCommits
public Pager<Commit> getCommits(Object projectIdOrPath, int mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager of merge request commits.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/commits
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestitemsPerPage
- the number of Commit instances that will be fetched per page- Returns:
- a Pager containing the commits for the specified merge request
- Throws:
GitLabApiException
- GitLabApiException if any exception occurs during execution
-
getCommitsStream
public Stream<Commit> getCommitsStream(Object projectIdOrPath, int mergeRequestIid) throws GitLabApiExceptionGet a Stream of merge request commits.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/commits
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a Stream containing the commits for the specified merge request
- Throws:
GitLabApiException
- GitLabApiException if any exception occurs during execution
-
getMergeRequestDiffs
public List<MergeRequestDiff> getMergeRequestDiffs(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a list of merge request diff versions.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/versions
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a List of merge request diff versions for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestDiffs
public Pager<MergeRequestDiff> getMergeRequestDiffs(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager of merge request diff versions.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/versions
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestitemsPerPage
- the number of MergeRequest instances that will be fetched per page- Returns:
- a Pager of merge request diff versions for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestDiffsStream
public Stream<MergeRequestDiff> getMergeRequestDiffsStream(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a Stream of merge request diff versions.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/versions
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a Stream of merge request diff versions for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestDiff
public MergeRequestDiff getMergeRequestDiff(Object projectIdOrPath, Integer mergeRequestIid, Integer versionId) throws GitLabApiExceptionGet a single merge request diff version.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/versions/:version_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestversionId
- the ID of the merge request diff version- Returns:
- a MergeRequestDiff instance for the specified MR diff version
- Throws:
GitLabApiException
- if any exception occurs
-
getOptionalMergeRequestDiff
public Optional<MergeRequestDiff> getOptionalMergeRequestDiff(Object projectIdOrPath, Integer mergeRequestIid, Integer versionId)Get a single merge request diff version as an Optional instance.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/versions/:version_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestversionId
- the ID of the merge request diff version- Returns:
- the specified MergeRequestDiff as an Optional instance instance
-
createMergeRequest
public MergeRequest createMergeRequest(Object projectIdOrPath, MergeRequestParams params) throws GitLabApiExceptionCreates a merge request.GitLab Endpoint: POST /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instanceparams
- a MergeRequestParams instance holding the info to create the merge request- Returns:
- the created MergeRequest instance
- Throws:
GitLabApiException
- if any exception occurs- Since:
- GitLab Starter 8.17, GitLab CE 11.0.
-
createMergeRequest
public MergeRequest createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId, Integer targetProjectId, String[] labels, Integer milestoneId, Boolean removeSourceBranch, Boolean squash) throws GitLabApiExceptionCreates a merge request.GitLab Endpoint: POST /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancesourceBranch
- the source branch, requiredtargetBranch
- the target branch, requiredtitle
- the title for the merge request, requireddescription
- the description of the merge requestassigneeId
- the Assignee user ID, optionaltargetProjectId
- the ID of a target project, optionallabels
- labels for MR, optionalmilestoneId
- the ID of a milestone, optionalremoveSourceBranch
- Flag indicating if a merge request should remove the source branch when merging, optionalsquash
- Squash commits into a single commit when merging, optional- Returns:
- the created MergeRequest instance
- Throws:
GitLabApiException
- if any exception occurs- Since:
- GitLab Starter 8.17, GitLab CE 11.0.
-
createMergeRequest
public MergeRequest createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId, Integer targetProjectId, String[] labels, Integer milestoneId, Boolean removeSourceBranch) throws GitLabApiExceptionCreates a merge request.GitLab Endpoint: POST /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancesourceBranch
- the source branch, requiredtargetBranch
- the target branch, requiredtitle
- the title for the merge request, requireddescription
- the description of the merge requestassigneeId
- the Assignee user ID, optionaltargetProjectId
- the ID of a target project, optionallabels
- labels for MR, optionalmilestoneId
- the ID of a milestone, optionalremoveSourceBranch
- Flag indicating if a merge request should remove the source branch when merging, optional- Returns:
- the created MergeRequest instance
- Throws:
GitLabApiException
- if any exception occurs
-
createMergeRequest
public MergeRequest createMergeRequest(Object projectIdOrPath, String sourceBranch, String targetBranch, String title, String description, Integer assigneeId) throws GitLabApiExceptionCreates a merge request and optionally assigns a reviewer to it.GitLab Endpoint: POST /projects/:id/merge_requests
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancesourceBranch
- the source branch, requiredtargetBranch
- the target branch, requiredtitle
- the title for the merge request, requireddescription
- the description of the merge requestassigneeId
- the Assignee user ID, optional- Returns:
- the created MergeRequest instance
- Throws:
GitLabApiException
- if any exception occurs
-
updateMergeRequest
public MergeRequest updateMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, MergeRequestParams params) throws GitLabApiExceptionUpdates an existing merge request. You can change branches, title, or even close the merge request.GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request to updateparams
- a MergeRequestParams instance holding the info to update the merge request- Returns:
- the updated merge request
- Throws:
GitLabApiException
- if any exception occurs
-
updateMergeRequest
public MergeRequest updateMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String targetBranch, String title, Integer assigneeId, String description, Constants.StateEvent stateEvent, String labels, Integer milestoneId, Boolean removeSourceBranch, Boolean squash, Boolean discussionLocked, Boolean allowCollaboration) throws GitLabApiExceptionUpdates an existing merge request. You can change branches, title, or even close the MR.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request to updatetargetBranch
- the target branch, optionaltitle
- the title for the merge requestassigneeId
- the Assignee user ID, optionaldescription
- the description of the merge request, optionalstateEvent
- new state for the merge request, optionallabels
- comma separated list of labels, optionalmilestoneId
- the ID of a milestone, optionalremoveSourceBranch
- Flag indicating if a merge request should remove the source branch when merging, optionalsquash
- Squash commits into a single commit when merging, optionaldiscussionLocked
- Flag indicating if the merge request's discussion is locked, optionalallowCollaboration
- Allow commits from members who can merge to the target branch, optional- Returns:
- the updated merge request
- Throws:
GitLabApiException
- if any exception occurs
-
deleteMergeRequest
public void deleteMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionOnly for admins and project owners. Soft deletes the specified merge.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: DELETE /projects/:id/merge_requests/:merge_request_iid
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Throws:
GitLabApiException
- if any exception occurs
-
acceptMergeRequest
public MergeRequest acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, AcceptMergeRequestParams params) throws GitLabApiExceptionMerge changes to the merge request. If the MR has any conflicts and can not be merged, you'll get a 405 and the error message 'Branch cannot be merged'. If merge request is already merged or closed, you'll get a 406 and the error message 'Method Not Allowed'. If the sha parameter is passed and does not match the HEAD of the source, you'll get a 409 and the error message 'SHA does not match HEAD of source branch'. If you don't have permissions to accept this merge request, you'll get a 401.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/merge
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestparams
- the MergeRequest instance holding the parameters for accepting the merge request- Returns:
- the merged merge request
- Throws:
GitLabApiException
- if any exception occurs
-
acceptMergeRequest
public MergeRequest acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionMerge changes to the merge request. If the MR has any conflicts and can not be merged, you'll get a 405 and the error message 'Branch cannot be merged'. If merge request is already merged or closed, you'll get a 406 and the error message 'Method Not Allowed'. If the sha parameter is passed and does not match the HEAD of the source, you'll get a 409 and the error message 'SHA does not match HEAD of source branch'. If you don't have permissions to accept this merge request, you'll get a 401.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/merge
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- the merged merge request
- Throws:
GitLabApiException
- if any exception occurs
-
acceptMergeRequest
public MergeRequest acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String mergeCommitMessage, Boolean shouldRemoveSourceBranch, Boolean mergeWhenPipelineSucceeds) throws GitLabApiExceptionMerge changes to the merge request. If the MR has any conflicts and can not be merged, you'll get a 405 and the error message 'Branch cannot be merged'. If merge request is already merged or closed, you'll get a 406 and the error message 'Method Not Allowed'. If the sha parameter is passed and does not match the HEAD of the source, you'll get a 409 and the error message 'SHA does not match HEAD of source branch'. If you don't have permissions to accept this merge request, you'll get a 401.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request. Additionally, mergeWhenPipelineSucceeds sets the merge_when_build_succeeds flag for GitLab API V3.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/merge
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestmergeCommitMessage
- , custom merge commit message, optionalshouldRemoveSourceBranch
- , if true removes the source branch, optionalmergeWhenPipelineSucceeds
- , if true the MR is merged when the pipeline, optional- Returns:
- the merged merge request
- Throws:
GitLabApiException
- if any exception occurs
-
acceptMergeRequest
public MergeRequest acceptMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String mergeCommitMessage, Boolean shouldRemoveSourceBranch, Boolean mergeWhenPipelineSucceeds, String sha) throws GitLabApiExceptionMerge changes to the merge request. If the MR has any conflicts and can not be merged, you'll get a 405 and the error message 'Branch cannot be merged'. If merge request is already merged or closed, you'll get a 406 and the error message 'Method Not Allowed'. If the sha parameter is passed and does not match the HEAD of the source, you'll get a 409 and the error message 'SHA does not match HEAD of source branch'. If you don't have permissions to accept this merge request, you'll get a 401.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request. Additionally, mergeWhenPipelineSucceeds sets the merge_when_build_succeeds flag for GitLab API V3.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/merge
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestmergeCommitMessage
- , custom merge commit message, optionalshouldRemoveSourceBranch
- , if true removes the source branch, optionalmergeWhenPipelineSucceeds
- , if true the MR is merged when the pipeline, optionalsha
- if present, then this SHA must match the HEAD of the source branch, otherwise the merge will fail, optional- Returns:
- the merged merge request
- Throws:
GitLabApiException
- if any exception occurs
-
cancelMergeRequest
public MergeRequest cancelMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionCancel merge when pipeline succeeds. If you don't have permissions to accept this merge request, you'll get a 401. If the merge request is already merged or closed, you get 405 and error message 'Method Not Allowed'. In case the merge request is not set to be merged when the pipeline succeeds, you'll also get a 406 error.NOTE: GitLab API V4 uses IID (internal ID), V3 uses ID to identify the merge request.
GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/cancel_merge_when_pipeline_succeeds
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- the updated merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestApprovals
public MergeRequest getMergeRequestApprovals(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet the merge request with approval information. Note: This API endpoint is only available on 8.9 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approvals
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a MergeRequest instance with approval information included
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovals
public MergeRequest getApprovals(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet the merge request with approval information. Note: This API endpoint is only available on 8.9 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approvals
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a MergeRequest instance with approval information included
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovalState
public ApprovalState getApprovalState(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet the approval state of a merge request. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approval_state
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a ApprovalState instance with approval state
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovalRules
public List<ApprovalRule> getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a list of the merge request level approval rules. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approval_rules
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a List of ApprovalRule instances for the specified merge request.
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovalRules
public Pager<ApprovalRule> getApprovalRules(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager of the merge request level approval rules. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approval_rules
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestitemsPerPage
- the number of ApprovalRule instances that will be fetched per page- Returns:
- a Pager of ApprovalRule instances for the specified merge request.
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovalRulesStream
public Stream<ApprovalRule> getApprovalRulesStream(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a Stream of the merge request level approval rules. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/approval_rules
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a Stream of ApprovalRule instances for the specified merge request.
- Throws:
GitLabApiException
- if any exception occurs
-
createApprovalRule
public ApprovalRule createApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer projectRuleId, ApprovalRuleParams params) throws GitLabApiExceptionCreate a merge request level approval rule. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/approval_rules
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestprojectRuleId
- the ID of a project-level approval ruleparams
- the ApprovalRuleParams instance holding the parameters for the approval rule- Returns:
- a ApprovalRule instance with approval configuration
- Throws:
GitLabApiException
- if any exception occurs
-
updateApprovalRule
public ApprovalRule updateApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer approvalRuleId, ApprovalRuleParams params) throws GitLabApiExceptionUpdate the specified the merge request level approval rule. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/approval_rules/:approval_rule_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestapprovalRuleId
- the ID of the approval ruleparams
- the ApprovalRuleParams instance holding the parameters for the approval rule update- Returns:
- a ApprovalRule instance with approval configuration
- Throws:
GitLabApiException
- if any exception occurs
-
deleteApprovalRule
public void deleteApprovalRule(Object projectIdOrPath, Integer mergeRequestIid, Integer approvalRuleId) throws GitLabApiExceptionDelete the specified the merge request level approval rule. Note: This API endpoint is only available on 12.3 Starter and above.GitLab Endpoint: DELETE /projects/:id/merge_requests/:merge_request_iid/approval_rules/:approval_rule_id
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestapprovalRuleId
- the ID of the approval rule- Throws:
GitLabApiException
- if any exception occurs
-
approveMergeRequest
public MergeRequest approveMergeRequest(Object projectIdOrPath, Integer mergeRequestIid, String sha) throws GitLabApiExceptionApprove a merge request. Note: This API endpoint is only available on 8.9 EE and above.GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/approve
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestsha
- the HEAD of the merge request, optional- Returns:
- a MergeRequest instance with approval information included
- Throws:
GitLabApiException
- if any exception occurs
-
unapproveMergeRequest
public MergeRequest unapproveMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionUnapprove a merge request. Note: This API endpoint is only available on 8.9 EE and above.GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/unapprove
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a MergeRequest instance with approval information included
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestChanges
public MergeRequest getMergeRequestChanges(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet merge request with changes information.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/changes
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the IID of the merge request to get- Returns:
- a merge request including its changes
- Throws:
GitLabApiException
- if any exception occurs
-
getParticipants
public List<Participant> getParticipants(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet list of participants of merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/participants
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the IID of the merge request to get- Returns:
- a List containing all participants for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getParticipants
public List<Participant> getParticipants(Object projectIdOrPath, Integer mergeRequestIid, int page, int perPage) throws GitLabApiExceptionGet list of participants of merge request and in the specified page range.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/participants
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the IID of the merge request to getpage
- the page to getperPage
- the number of projects per page- Returns:
- a List containing all participants for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getParticipants
public Pager<Participant> getParticipants(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager of the participants of merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/participants
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the IID of the merge request to getitemsPerPage
- the number of Participant instances that will be fetched per page- Returns:
- a Pager containing all participants for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getParticipantsStream
public Stream<Participant> getParticipantsStream(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet Stream of participants of merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/participants
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the IID of the merge request to get- Returns:
- a Stream containing all participants for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getClosesIssues
public List<Issue> getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet list containing all the issues that would be closed by merging the provided merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/closes_issues
- Parameters:
projectIdOrPath
- id, path of the project, or a Project instance holding the project ID or pathmergeRequestIid
- the IID of the merge request to get the closes issues for- Returns:
- a List containing all the issues that would be closed by merging the provided merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getClosesIssues
public List<Issue> getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid, int page, int perPage) throws GitLabApiExceptionGet list containing all the issues that would be closed by merging the provided merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/closes_issues
- Parameters:
projectIdOrPath
- id, path of the project, or a Project instance holding the project ID or pathmergeRequestIid
- the IID of the merge request to get the closes issues forpage
- the page to getperPage
- the number of issues per page- Returns:
- a List containing all the issues that would be closed by merging the provided merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getClosesIssues
public Pager<Issue> getClosesIssues(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager containing all the issues that would be closed by merging the provided merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/closes_issues
- Parameters:
projectIdOrPath
- id, path of the project, or a Project instance holding the project ID or pathmergeRequestIid
- the IID of the merge request to get the closes issues foritemsPerPage
- the number of Issue instances that will be fetched per page- Returns:
- a Pager containing all the issues that would be closed by merging the provided merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getClosesIssuesStream
public Stream<Issue> getClosesIssuesStream(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet Stream containing all the issues that would be closed by merging the provided merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/closes_issues
- Parameters:
projectIdOrPath
- id, path of the project, or a Project instance holding the project ID or pathmergeRequestIid
- the IID of the merge request to get the closes issues for- Returns:
- a Stream containing all the issues that would be closed by merging the provided merge request
- Throws:
GitLabApiException
- if any exception occurs
-
getApprovalStatus
public List<Issue> getApprovalStatus(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet list containing all the issues that would be closed by merging the provided merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/closes_issues
- Parameters:
projectIdOrPath
- id, path of the project, or a Project instance holding the project ID or pathmergeRequestIid
- the IID of the merge request to get the closes issues for- Returns:
- a List containing all the issues that would be closed by merging the provided merge request
- Throws:
GitLabApiException
- if any exception occurs
-
rebaseMergeRequest
public MergeRequest rebaseMergeRequest(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionAutomatically rebase the source_branch of the merge request against its target_branch. This is an asynchronous request. The API will return a 202 Accepted response if the request is enqueued successfullyGitLab Endpoint: PUT /projects/:id/merge_requests/:merge_request_iid/rebase
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request to rebase- Returns:
- the merge request info containing the status of a merge request rebase
- Throws:
GitLabApiException
- if any exception occurs
-
getRebaseStatus
public MergeRequest getRebaseStatus(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet the merge request info containing the status of a merge request rebase.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request being rebased- Returns:
- the merge request info containing the status of a merge request rebase
- Throws:
GitLabApiException
- if any exception occurs
-
getMergeRequestPipelines
public List<Pipeline> getMergeRequestPipelines(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a list of pipelines for a merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/pipelines
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a list containing the pipelines for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs during execution
-
getMergeRequestPipelines
public Pager<Pipeline> getMergeRequestPipelines(Object projectIdOrPath, Integer mergeRequestIid, int itemsPerPage) throws GitLabApiExceptionGet a Pager of pipelines for a merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/pipelines
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge requestitemsPerPage
- the number of Pipeline instances that will be fetched per page- Returns:
- a Pager containing the pipelines for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs during execution
-
getMergeRequestPipelinesStream
public Stream<Pipeline> getMergeRequestPipelinesStream(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionGet a Stream of pipelines for a merge request.GitLab Endpoint: GET /projects/:id/merge_requests/:merge_request_iid/pipelines
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a Stream containing the pipelines for the specified merge request
- Throws:
GitLabApiException
- if any exception occurs during execution
-
createMergeRequestPipeline
public Pipeline createMergeRequestPipeline(Object projectIdOrPath, Integer mergeRequestIid) throws GitLabApiExceptionCreate a new pipeline for a merge request. A pipeline created via this endpoint will not run a regular branch/tag pipeline, it requires .gitlab-ci.yml to be configured with only: [merge_requests] to create jobs.
The new pipeline can be: A detached merge request pipeline. A pipeline for merged results if the project setting is enabled.GitLab Endpoint: POST /projects/:id/merge_requests/:merge_request_iid/pipelines
- Parameters:
projectIdOrPath
- the project in the form of an Integer(ID), String(path), or Project instancemergeRequestIid
- the internal ID of the merge request- Returns:
- a Pipeline instance with the newly created pipeline info
- Throws:
GitLabApiException
- if any exception occurs during execution
-