-
Methods in org.gitlab4j.api that return Pipeline
Modifier and Type |
Method |
Description |
Pipeline |
PipelineApi.cancelPipelineJobs(Object projectIdOrPath,
int pipelineId) |
Cancel jobs of specified pipelines in a project.
|
Pipeline |
MergeRequestApi.createMergeRequestPipeline(Object projectIdOrPath,
Integer mergeRequestIid) |
Create a new pipeline for a merge request.
|
Pipeline |
PipelineApi.createPipeline(Object projectIdOrPath,
String ref) |
Create a pipelines in a project.
|
Pipeline |
PipelineApi.createPipeline(Object projectIdOrPath,
String ref,
List<Variable> variables) |
Create a pipelines in a project.
|
Pipeline |
PipelineApi.createPipeline(Object projectIdOrPath,
String ref,
Map<String,String> variables) |
Create a pipelines in a project.
|
Pipeline |
PipelineApi.getPipeline(Object projectIdOrPath,
int pipelineId) |
Get single pipelines in a project.
|
Pipeline |
PipelineApi.retryPipelineJob(Object projectIdOrPath,
int pipelineId) |
Retry a job in specified pipelines in a project.
|
Pipeline |
PipelineApi.triggerPipeline(Object projectIdOrPath,
String token,
String ref,
List<Variable> variables) |
Trigger a pipeline for a project.
|
Pipeline |
PipelineApi.triggerPipeline(Object projectIdOrPath,
Trigger trigger,
String ref,
List<Variable> variables) |
Trigger a pipeline for a project.
|
Methods in org.gitlab4j.api that return types with arguments of type Pipeline
Modifier and Type |
Method |
Description |
List<Pipeline> |
MergeRequestApi.getMergeRequestPipelines(Object projectIdOrPath,
Integer mergeRequestIid) |
Get a list of pipelines for a merge request.
|
Pager<Pipeline> |
MergeRequestApi.getMergeRequestPipelines(Object projectIdOrPath,
Integer mergeRequestIid,
int itemsPerPage) |
Get a Pager of pipelines for a merge request.
|
Stream<Pipeline> |
MergeRequestApi.getMergeRequestPipelinesStream(Object projectIdOrPath,
Integer mergeRequestIid) |
Get a Stream of pipelines for a merge request.
|
List<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath) |
Get a list of pipelines in a project.
|
Pager<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of pipelines in a project.
|
List<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
int page,
int perPage) |
Get a list of pipelines in a project in the specified page range.
|
List<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
Constants.PipelineScope scope,
PipelineStatus status,
String ref,
boolean yamlErrors,
String name,
String username,
Constants.PipelineOrderBy orderBy,
Constants.SortOrder sort) |
Get a list of pipelines in a project.
|
Pager<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
Constants.PipelineScope scope,
PipelineStatus status,
String ref,
boolean yamlErrors,
String name,
String username,
Constants.PipelineOrderBy orderBy,
Constants.SortOrder sort,
int itemsPerPage) |
Get a Pager of pipelines in a project.
|
List<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
Constants.PipelineScope scope,
PipelineStatus status,
String ref,
boolean yamlErrors,
String name,
String username,
Constants.PipelineOrderBy orderBy,
Constants.SortOrder sort,
int page,
int perPage) |
Get a list of pipelines in a project in the specified page range.
|
List<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
PipelineFilter filter) |
Get a list of pipelines in a project filtered with the provided PipelineFilter .
|
Pager<Pipeline> |
PipelineApi.getPipelines(Object projectIdOrPath,
PipelineFilter filter,
int itemsPerPage) |
Get a Pager of pipelines in a project filtered with the provided PipelineFilter .
|
Stream<Pipeline> |
PipelineApi.getPipelinesStream(Object projectIdOrPath) |
Get a Stream of pipelines in a project.
|
Stream<Pipeline> |
PipelineApi.getPipelinesStream(Object projectIdOrPath,
Constants.PipelineScope scope,
PipelineStatus status,
String ref,
boolean yamlErrors,
String name,
String username,
Constants.PipelineOrderBy orderBy,
Constants.SortOrder sort) |
Get a Stream of pipelines in a project.
|
Stream<Pipeline> |
PipelineApi.getPipelinesStream(Object projectIdOrPath,
PipelineFilter filter) |
Get a Stream of pipelines in a project filtered with the provided PipelineFilter .
|
-