Sha256: 82a121e3ee29c458d093f15eaf2f706087d9c88d157f94403f4e3de52327160c
Contents?: true
Size: 556 Bytes
Versions: 1
Compression:
Stored size: 556 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Deletes account from the project # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.3/root_admin/deleteAccountFromProject.html] def delete_account_from_project(account, projectid, options={}) options.merge!( 'command' => 'deleteAccountFromProject', 'account' => account, 'projectid' => projectid ) 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/delete_account_from_project.rb |