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