Uses of Class
org.gitlab4j.api.models.PipelineSchedule
Package | Description |
---|---|
org.gitlab4j.api |
-
Uses of PipelineSchedule in org.gitlab4j.api
Methods in org.gitlab4j.api that return PipelineSchedule Modifier and Type Method Description PipelineSchedule
PipelineApi. createPipelineSchedule(Object projectIdOrPath, PipelineSchedule pipelineSchedule)
create a pipeline schedule for a project.PipelineSchedule
PipelineApi. getPipelineSchedule(Object projectIdOrPath, Integer pipelineScheduleId)
Get a specific pipeline schedule for project.PipelineSchedule
PipelineApi. takeOwnershipPipelineSchedule(Object projectIdOrPath, Integer pipelineScheduleId)
Update the owner of the pipeline schedule of a project.PipelineSchedule
PipelineApi. updatePipelineSchedule(Object projectIdOrPath, PipelineSchedule pipelineSchedule)
Modifies a pipeline schedule for project.Methods in org.gitlab4j.api that return types with arguments of type PipelineSchedule Modifier and Type Method Description Optional<PipelineSchedule>
PipelineApi. getOptionalPipelineSchedule(Object projectIdOrPath, Integer pipelineScheduleId)
Get a specific pipeline schedule for project as an Optional instance.List<PipelineSchedule>
PipelineApi. getPipelineSchedules(Object projectIdOrPath)
Get a list of the project pipeline_schedules for the specified project.Pager<PipelineSchedule>
PipelineApi. getPipelineSchedules(Object projectIdOrPath, int itemsPerPage)
Get Pager of project pipeline schedule.List<PipelineSchedule>
PipelineApi. getPipelineSchedules(Object projectIdOrPath, int page, int perPage)
Get list of project pipeline schedules in the specified page range.Stream<PipelineSchedule>
PipelineApi. getPipelineSchedulesStream(Object projectIdOrPath)
Get a Stream of the project pipeline schedule for the specified project.Methods in org.gitlab4j.api with parameters of type PipelineSchedule Modifier and Type Method Description PipelineSchedule
PipelineApi. createPipelineSchedule(Object projectIdOrPath, PipelineSchedule pipelineSchedule)
create a pipeline schedule for a project.PipelineSchedule
PipelineApi. updatePipelineSchedule(Object projectIdOrPath, PipelineSchedule pipelineSchedule)
Modifies a pipeline schedule for project.