Sha256: bc846fa0a6ba5d3a294dc66cea6f94ba33b73a181223128233c776b123891aee
Contents?: true
Size: 688 Bytes
Versions: 28
Compression:
Stored size: 688 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.4/root_admin/deleteAccountFromProject.html] def delete_account_from_project(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'deleteAccountFromProject') else options.merge!('command' => 'deleteAccountFromProject', 'projectid' => args[0], 'account' => args[1]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems