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