Uses of Class
org.gitlab4j.api.models.Pipeline
-
Packages that use Pipeline Package Description org.gitlab4j.api org.gitlab4j.api.models -
-
Uses of Pipeline in org.gitlab4j.api
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
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>
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.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. -
Uses of Pipeline in org.gitlab4j.api.models
Methods in org.gitlab4j.api.models that return Pipeline Modifier and Type Method Description Pipeline
PipelineSchedule. getLastPipeline()
Pipeline
Job. getPipeline()
Methods in org.gitlab4j.api.models with parameters of type Pipeline Modifier and Type Method Description void
PipelineSchedule. setLastPipeline(Pipeline lastPipeline)
void
Job. setPipeline(Pipeline pipeline)
Job
Job. withPipeline(Pipeline pipeline)
-