Sha256: 5b49e58ede1dee6d847bbd588c89f8a38bd7897a961ba32571408138e2360894
Contents?: true
Size: 478 Bytes
Versions: 29
Compression:
Stored size: 478 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Dissociate a LUN # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/dissociateLun.html] def dissociate_lun(iqn, path, options={}) options.merge!( 'command' => 'dissociateLun', 'iqn' => iqn, 'path' => path ) request(options) end end end end end
Version data entries
29 entries across 27 versions & 4 rubygems