Sha256: c7786fee193ac381e40fc9437acf4a755faac35a02f987436f787c21306e71ed
Contents?: true
Size: 654 Bytes
Versions: 28
Compression:
Stored size: 654 Bytes
Contents
module Fog module Compute class Cloudstack class Real # Accepts or declines project invitation # # {CloudStack API Reference}[http://cloudstack.apache.org/docs/api/apidocs-4.4/root_admin/updateProjectInvitation.html] def update_project_invitation(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'updateProjectInvitation') else options.merge!('command' => 'updateProjectInvitation', 'projectid' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems