Sha256: e37fcb7e041f02cb932ece66d221e6ce939c471335505b2a0a85e4cbb80102c6
Contents?: true
Size: 656 Bytes
Versions: 28
Compression:
Stored size: 656 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates an existing autoscale vm profile. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateAutoScaleVmProfile.html] def update_auto_scale_vm_profile(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateAutoScaleVmProfile') else options.merge!('command' => 'updateAutoScaleVmProfile', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems