DeleteVM permanently deletes a VM or container WARNING: This operation is irreversible and will destroy all VM data including disks.
(vm *VM)
| 279 | // DeleteVM permanently deletes a VM or container |
| 280 | // WARNING: This operation is irreversible and will destroy all VM data including disks. |
| 281 | func (c *Client) DeleteVM(vm *VM) (string, error) { |
| 282 | return c.DeleteVMWithOptions(vm, nil) |
| 283 | } |
| 284 | |
| 285 | // DeleteVMOptions contains options for deleting a VM. |
| 286 | type DeleteVMOptions struct { |
no test coverage detected