Sha256: 3dee1a293652fc112847d3c2643586f147b3e52d6e59e4fa1fb8b4f32f699fff
Contents?: true
Size: 647 Bytes
Versions: 28
Compression:
Stored size: 647 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/deleteProjectInvitation.html] def delete_project_invitation(*args) options = {} if args[0].is_a? Hash options = args[0] options.merge!('command' => 'deleteProjectInvitation') else options.merge!('command' => 'deleteProjectInvitation', 'id' => args[0]) end request(options) end end end end end
Version data entries
28 entries across 26 versions & 4 rubygems