Sha256: 1c9eb0c4ac996955deb53ea2bc3f77173a2a5525b42592f7acf586cf76823f5a
Contents?: true
Size: 493 Bytes
Versions: 1
Compression:
Stored size: 493 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Updates an existing autoscale vm group. # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/updateAutoScaleVmGroup.html] def update_auto_scale_vm_group(id, options={}) options.merge!( 'command' => 'updateAutoScaleVmGroup', '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_group.rb |