def stop(cls, vm_id):
     ShellUtils.command(["qm", "stop", vm_id])
 def suspend(cls, vm_id):
     ShellUtils.command(["qm", "suspend", vm_id])
 def resume(cls, vm_id):
     ShellUtils.command(["qm", "resume", vm_id])
 def status(cls, vm_id):
     return ShellUtils.command(["qm", "status", vm_id])
 def stop(cls, vm_id):
   ShellUtils.command(["qm", "stop", vm_id])
 def resume(cls, vm_id):
   ShellUtils.command(["qm", "resume", vm_id])
 def suspend(cls, vm_id):
   ShellUtils.command(["qm", "suspend", vm_id])
 def status(cls, vm_id):
   return ShellUtils.command(["qm", "status", vm_id])