Sha256: 10e66ecbd15c1457206823e5aea84b0444b758cb3baa8725b7bc7f8ac190911a
Contents?: true
Size: 621 Bytes
Versions: 28
Compression:
Stored size: 621 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Copies an iso from one zone to another. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/copyIso.html] def copy_iso(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'copyIso') else options.merge!('command' => 'copyIso', 'destzoneid' => args[0], 'id' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems