Delete virtual machine

Options
| option | description | Allowed values |
|---|
| vmid | the virtual machine id you want to delete | string |
| filter-name | a regex applied on virtual machine name | string |
| confirm | does not ask for confirmation | N/A |
| block | block the command until it finished | N/A |
Examples
- delete a virtual machine by its id
proxcli vms delete --vmid 111
- delete all virtual machines matching the specified regex
proxcli vms delete --filter-name "^b4p"
- delete all virtual machines matching the specified regex without any confirmation and wait for all deletion to be finished before exiting
proxcli vms delete --filter-name "^b4p" --confirm --block