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