Sha256: cdeef64fcc01270dc06bfbac7d5b4c6ee2149d6ca2f7d1fbc98bcedfaad030c6
Contents?: true
Size: 466 Bytes
Versions: 1
Compression:
Stored size: 466 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Destroyes a system virtual machine. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/destroySystemVm.html] def destroy_system_vm(id, options={}) options.merge!( 'command' => 'destroySystemVm', 'id' => id ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/destroy_system_vm.rb |