Sha256: a4a9977e3734ffd72e414f7320ac6d2c1228873ec60c76e30ca725bd339688f1
Contents?: true
Size: 601 Bytes
Versions: 28
Compression:
Stored size: 601 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Removes a Guest OS from listing. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/removeGuestOs.html] def remove_guest_os(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'removeGuestOs') else options.merge!('command' => 'removeGuestOs', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems