Sha256: b7fb38ef6b6df0436f1414ba4fd111a217c0ab38d3142dc009448d5fda984842
Contents?: true
Size: 484 Bytes
Versions: 29
Compression:
Stored size: 484 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Create a pool # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/createPool.html] def create_pool(algorithm, name, options={}) options.merge!( 'command' => 'createPool', 'algorithm' => algorithm, 'name' => name ) request(options) end end end end end
Version data entries
29 entries across 27 versions & 4 rubygems