Sha256: a66f136cbd752214d2853fbd0471ec4ea5fa70d642f23625fbdb6ed321aae8e2
Contents?: true
Size: 526 Bytes
Versions: 1
Compression:
Stored size: 526 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Dedicate an existing cluster # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/dedicateCluster.html] def dedicate_cluster(clusterid, domainid, options={}) options.merge!( 'command' => 'dedicateCluster', 'clusterid' => clusterid, 'domainid' => domainid ) request(options) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-1.23.0 | lib/fog/cloudstack/requests/compute/dedicate_cluster.rb |