Sha256: f4e9ffa686c504b1c90fe2532c3c666fc00086312e46c6c128c87e18a870e74d
Contents?: true
Size: 648 Bytes
Versions: 28
Compression:
Stored size: 648 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates the information about Guest OS # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateGuestOs.html] def update_guest_os(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateGuestOs') else options.merge!('command' => 'updateGuestOs', 'id' => args[0], 'osdisplayname' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems