Sha256: 9ffe3c87df7d22cc35a74b5431e25b59a05dcaca301665e8ff6f6964f881c9b0
Contents?: true
Size: 501 Bytes
Versions: 1
Compression:
Stored size: 501 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.3/root_admin/updateAutoScaleVmProfile.html] def update_auto_scale_vm_profile(id, options={}) options.merge!( 'command' => 'updateAutoScaleVmProfile', '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/update_auto_scale_vm_profile.rb |