Skip to content

Latest commit

 

History

History
35 lines (22 loc) · 425 Bytes

operations.md

File metadata and controls

35 lines (22 loc) · 425 Bytes

Operations

NOTE: If you haven't setup your LXD server, read configuration.md

Get all operations:

<?php

$operations = $lxd->operations->all();

Get operation information:

<?php

$info = $lxd->operations->info($uuid);

Cancel an operation:

<?php

$lxd->operations->cancel($uuid);

Wait for an operation to finish:

<?php

$lxd->operations->wait($uuid, $timeout);