Uses of Interface
com.adobe.aio.cloudmanager.PipelineExecution
-
Packages that use PipelineExecution Package Description com.adobe.aio.cloudmanager -
-
Uses of PipelineExecution in com.adobe.aio.cloudmanager
Methods in com.adobe.aio.cloudmanager that return PipelineExecution Modifier and Type Method Description @NotNull PipelineExecution
PipelineExecutionApi. get(@NotNull Pipeline pipeline, @NotNull String executionId)
Returns the specified execution of the pipeline.@NotNull PipelineExecution
PipelineExecutionApi. get(@NotNull String programId, @NotNull String pipelineId, @NotNull String executionId)
Get the specified execution of the pipeline.PipelineExecution
Pipeline. getExecution(String executionId)
Get the execution.@NotNull PipelineExecution
PipelineExecutionEndEvent. getExecution()
Get the Pipeline Execution associated with the event.@NotNull PipelineExecution
PipelineExecutionStartEvent. getExecution()
Get the Pipeline Execution associated with the event.PipelineExecution
PipelineExecutionStepState. getExecution()
Get the execution associated with this step state.@NotNull PipelineExecution
PipelineExecutionApi. start(@NotNull Pipeline pipeline)
Start the specified pipeline.@NotNull PipelineExecution
PipelineExecutionApi. start(@NotNull String programId, @NotNull String pipelineId)
Start the specified pipeline.PipelineExecution
Pipeline. startExecution()
Start this pipeline.Methods in com.adobe.aio.cloudmanager that return types with arguments of type PipelineExecution Modifier and Type Method Description @NotNull Optional<PipelineExecution>
PipelineExecutionApi. getCurrent(@NotNull Pipeline pipeline)
Get the current execution of the specified pipeline, if one exists.@NotNull Optional<PipelineExecution>
PipelineExecutionApi. getCurrent(@NotNull String programId, @NotNull String pipelineId)
Get the current execution of the specified pipeline, if one exists.Optional<PipelineExecution>
Pipeline. getCurrentExecution()
Get the current execution of this pipeline, if it exists.@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 Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull String programId, @NotNull String pipelineId)
List executions of the specified pipeline, using the default limit and starting at 0.@NotNull Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull String programId, @NotNull String pipelineId, int limit)
List executions of the specified pipeline, using the specified limit and starting at 0.@NotNull Collection<PipelineExecution>
PipelineExecutionApi. list(@NotNull String programId, @NotNull String pipelineId, int start, int limit)
List executions of the specified pipeline, using the specified limit and starting at the specified position.Methods in com.adobe.aio.cloudmanager with parameters of type PipelineExecution Modifier and Type Method Description void
PipelineExecutionApi. advance(@NotNull PipelineExecution execution)
Advance the execution of the specified pipeline execution, if in an appropriate state.void
PipelineExecutionApi. cancel(@NotNull PipelineExecution execution)
Cancel the execution of the specified pipeline execution, if in an appropriate state.@NotNull Collection<Metric>
PipelineExecutionApi. getQualityGateResults(@NotNull PipelineExecution execution, @NotNull StepAction action)
Get the metrics for the specified execution and step, if any.String
PipelineExecutionApi. getStepLogDownloadUrl(@NotNull PipelineExecution execution, @NotNull StepAction action)
Get the fully qualified URL to the specified step's log file.String
PipelineExecutionApi. getStepLogDownloadUrl(@NotNull PipelineExecution execution, @NotNull StepAction action, @NotNull String name)
Get the fully qualified URL to the specified log file referenced by name, within the step.@NotNull PipelineExecutionStepState
PipelineExecutionApi. getStepState(@NotNull PipelineExecution execution, @NotNull StepAction action)
Get the specified action step for the pipeline execution.
-