2011-09-07 10:00:25 -04:00
|
|
|
module Fog
|
|
|
|
module Compute
|
|
|
|
class Cloudstack
|
|
|
|
class Real
|
|
|
|
|
|
|
|
# Updates account information for the authenticated user.
|
|
|
|
#
|
|
|
|
# {CloudStack API Reference}[http://download.cloud.com/releases/2.2.0/api_2.2.4/global_admin/destroyVirtualMachine.html]
|
|
|
|
def destroy_virtual_machine(options={})
|
|
|
|
options.merge!(
|
|
|
|
'command' => 'destroyVirtualMachine'
|
|
|
|
)
|
|
|
|
|
|
|
|
request(options)
|
|
|
|
end
|
|
|
|
|
2012-05-08 13:01:13 -04:00
|
|
|
end # Real
|
|
|
|
|
|
|
|
class Mock
|
|
|
|
|
|
|
|
def destroy_virtual_machine(options={})
|
|
|
|
identity = options[:id]
|
|
|
|
|
|
|
|
self.data[:servers].delete(identity)
|
|
|
|
end
|
2011-09-07 10:00:25 -04:00
|
|
|
end
|
2012-05-08 13:01:13 -04:00
|
|
|
end # Cloudstack
|
|
|
|
end # Compute
|
|
|
|
end # Fog
|