We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
22 | class Steps extends API\Api |
||
23 | { |
||
24 | /** |
||
25 | * Get a list of all pipeline steps |
||
26 | * |
||
27 | * @access public |
||
28 | * @param string $account The team or individual account owning the repository. |
||
29 | * @param string $repo The repository identifier. |
||
30 | * @param string $pipelineUuid UUID of the pipeline. |
||
31 | * @return ResponseInterface |
||
32 | */ |
||
33 | 1 | public function all($account, $repo, $pipelineUuid) |
|
39 | |||
40 | /** |
||
41 | * Get an individual pipeline step |
||
42 | * |
||
43 | * @access public |
||
44 | * @param string $account The team or individual account owning the repository. |
||
45 | * @param string $repo The repository identifier. |
||
46 | * @param string $pipelineUuid UUID of the pipeline. |
||
47 | * @param string $stepUuid UUID of the step. |
||
48 | * @return ResponseInterface |
||
49 | */ |
||
50 | 1 | public function get($account, $repo, $pipelineUuid, $stepUuid) |
|
56 | |||
57 | /** |
||
58 | * Get the log of an individual pipeline step |
||
59 | * |
||
60 | * @access public |
||
61 | * @param string $account The team or individual account owning the repository. |
||
62 | * @param string $repo The repository identifier. |
||
63 | * @param string $pipelineUuid UUID of the pipeline. |
||
64 | * @param string $stepUuid UUID of the step. |
||
65 | * @return ResponseInterface |
||
66 | */ |
||
67 | 1 | public function log($account, $repo, $pipelineUuid, $stepUuid) |
|
73 | } |
||
74 |