Remove a VM.
(self, vm_id: str)
| 579 | print(f"Gracefully shutting down VM {vm_id}") |
| 580 | |
| 581 | def remove_vm(self, vm_id: str) -> None: |
| 582 | """Remove a VM.""" |
| 583 | self.rpc_call("RemoveVm", {"id": vm_id}) |
| 584 | print(f"Removed VM {vm_id}") |
| 585 | |
| 586 | def resize_vm( |
| 587 | self, |