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