Sha256: 27d775099f611cd59065127a3f0e0c64bf612ab7b8328dca6d543bd9e7b8bf46
Contents?: true
Size: 445 Bytes
Versions: 1
Compression:
Stored size: 445 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Suspends a project # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/suspendProject.html] def suspend_project(id, options={}) options.merge!( 'command' => 'suspendProject', 'id' => id ) 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/suspend_project.rb |