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