fog--fog/lib/fog/cloudstack/requests/compute/attach_iso.rb

27 lines
633 B
Ruby

module Fog
module Compute
class Cloudstack
class Real
# Attaches an ISO to a virtual machine.
#
# {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/attachIso.html]
def attach_iso(*args)
options = {}
if args[0].is_a? Hash
options = args[0]
options.merge!('command' => 'attachIso')
else
options.merge!('command' => 'attachIso',
'virtualmachineid' => args[0],
'id' => args[1])
end
request(options)
end
end
end
end
end