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 |
||
23 | class Pipelines extends Api |
||
24 | { |
||
25 | /** |
||
26 | * Get the information associated with a repository's pipelines |
||
27 | * |
||
28 | * @access public |
||
29 | * @param string $account The team or individual account owning the repository. |
||
30 | * @param string $repo The repository identifier. |
||
31 | * @return ResponseInterface |
||
32 | 1 | */ |
|
33 | public function all($account, $repo) |
||
39 | |||
40 | /** |
||
41 | * Creates a pipeline for the specified repository. |
||
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 array|string $params Additional parameters as array or JSON string |
||
47 | * @return ResponseInterface |
||
48 | 2 | */ |
|
49 | public function create($account, $repo, $params = array()) |
||
66 | |||
67 | /** |
||
68 | * Get a specific pipeline |
||
69 | * |
||
70 | * @access public |
||
71 | * @param string $account The team or individual account owning the repository. |
||
72 | * @param string $repo The repository identifier. |
||
73 | * @param string $uuid The pipeline's identifier. |
||
74 | * @return ResponseInterface |
||
75 | 1 | */ |
|
76 | public function get($account, $repo, $uuid) |
||
82 | |||
83 | /** |
||
84 | * Stop a specific pipeline |
||
85 | * |
||
86 | * @access public |
||
87 | * @param string $account The team or individual account owning the repository. |
||
88 | * @param string $repo The repository identifier. |
||
89 | * @param string $uuid The pipeline's identifier. |
||
90 | * @return ResponseInterface |
||
91 | 1 | */ |
|
92 | public function stopPipeline($account, $repo, $uuid) |
||
98 | |||
99 | /** |
||
100 | * Get steps |
||
101 | * |
||
102 | * @access public |
||
103 | * @return Pipelines\Steps |
||
104 | * |
||
105 | * @throws \InvalidArgumentException |
||
106 | * @codeCoverageIgnore |
||
107 | */ |
||
108 | public function steps() |
||
112 | } |
||
113 |