Sha256: 62c47957595cc0522adba6c8cdaa3e78b5d3247b5437fefd7638d5b290aece77
Contents?: true
Size: 630 Bytes
Versions: 28
Compression:
Stored size: 630 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Release the dedication for the pod # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/releaseDedicatedPod.html] def release_dedicated_pod(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'releaseDedicatedPod') else options.merge!('command' => 'releaseDedicatedPod', 'podid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems