Sha256: 59c2c1d4c5cc9d75fff53304d0b7443d5a06d54609066ce68178eef3deaacb43
Contents?: true
Size: 465 Bytes
Versions: 1
Compression:
Stored size: 465 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Extracts an ISO # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/extractIso.html] def extract_iso(mode, id, options={}) options.merge!( 'command' => 'extractIso', 'mode' => mode, '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/extract_iso.rb |