Uses of Interface
com.adobe.aio.cloudmanager.Pipeline
-
Packages that use Pipeline Package Description com.adobe.aio.cloudmanager -
-
Uses of Pipeline in com.adobe.aio.cloudmanager
Fields in com.adobe.aio.cloudmanager with type parameters of type Pipeline Modifier and Type Field Description static Predicate<Pipeline>
Pipeline. IS_BUSY
Predicate for pipelines which are BUSY.Methods in com.adobe.aio.cloudmanager that return Pipeline Modifier and Type Method Description @NotNull Pipeline
PipelineApi. get(@NotNull String programId, String pipelineId)
Get the pipeline within the specified program.Pipeline
Pipeline. update(PipelineUpdate update)
Update this pipeline with the specified changes.@NotNull Pipeline
PipelineApi. update(@NotNull Pipeline pipeline, @NotNull PipelineUpdate updates)
Change details about a pipeline.@NotNull Pipeline
PipelineApi. update(@NotNull String programId, @NotNull String pipelineId, @NotNull PipelineUpdate updates)
Change details about a pipeline.Methods in com.adobe.aio.cloudmanager that return types with arguments of type Pipeline Modifier and Type Method Description @NotNull Collection<Pipeline>
PipelineApi. list(@NotNull Program program)
List all pipelines within the specified program.@NotNull Collection<Pipeline>
PipelineApi. list(@NotNull String programId)
List all pipelines within the specified program.@NotNull Collection<Pipeline>
PipelineApi. list(@NotNull String programId, @NotNull Predicate<Pipeline> predicate)
List all pipelines in the program that meet the predicate clause.Methods in com.adobe.aio.cloudmanager with parameters of type Pipeline Modifier and Type Method Description void
PipelineApi. delete(@NotNull Pipeline pipeline)
Delete the pipeline.@NotNull PipelineExecution
PipelineExecutionApi. get(@NotNull Pipeline pipeline, @NotNull String executionId)
Returns the specified execution of the pipeline.@NotNull Optional<PipelineExecution>
PipelineExecutionApi. getCurrent(@NotNull Pipeline pipeline)
Get the current execution of the specified pipeline, if one exists.@NotNull Set<Variable>
PipelineApi. getVariables(@NotNull Pipeline pipeline)
List all variables associated with the pipelinevoid
PipelineApi. invalidateCache(@NotNull Pipeline pipeline)
Invalidate the build cache for the pipeline.@NotNull Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull Pipeline pipeline)
List executions of the specified pipeline, using the default limit and starting at 0.@NotNull Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull Pipeline pipeline, int limit)
List executions of the specified pipeline, using the specified limit and starting at 0.@NotNull Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull Pipeline pipeline, int start, int limit)
List executions of the specified pipeline, using the specified limit and starting at the specified position.@NotNull Set<Variable>
PipelineApi. setVariables(@NotNull Pipeline pipeline, Variable... variables)
Set the variables in the pipeline@NotNull PipelineExecution
PipelineExecutionApi. start(@NotNull Pipeline pipeline)
Start the specified pipeline.boolean
Pipeline.IdPredicate. test(Pipeline pipeline)
boolean
Pipeline.NamePredicate. test(Pipeline pipeline)
@NotNull Pipeline
PipelineApi. update(@NotNull Pipeline pipeline, @NotNull PipelineUpdate updates)
Change details about a pipeline.Method parameters in com.adobe.aio.cloudmanager with type arguments of type Pipeline Modifier and Type Method Description @NotNull Collection<Pipeline>
PipelineApi. list(@NotNull String programId, @NotNull Predicate<Pipeline> predicate)
List all pipelines in the program that meet the predicate clause.
-