1 | <?php |
||
18 | class Image extends AbstractApi |
||
19 | { |
||
20 | /** |
||
21 | * List all ISOs currently available on this account. |
||
22 | * |
||
23 | * @return ImageEntity[] |
||
24 | */ |
||
25 | public function list() |
||
31 | |||
32 | /** |
||
33 | * Create a new ISO image on the current account. |
||
34 | * |
||
35 | * The ISO image will be downloaded from a given URL. |
||
36 | * Download status can be checked with the v1/iso/list call. |
||
37 | * |
||
38 | * @param string $url |
||
39 | * |
||
40 | * @throws HttpException |
||
41 | * |
||
42 | * @return mixed Api response |
||
43 | */ |
||
44 | public function create($url) |
||
50 | } |
||
51 |