Sha256: 2280c57c31f69c6dccf01709386c16c154064b69992e2ef06bfc36a42dea3ad9

Contents?: true

Size: 514 Bytes

Versions: 1

Compression:

Stored size: 514 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.3/root_admin/updateProjectInvitation.html]
        def update_project_invitation(projectid, options={})
          options.merge!(
            'command' => 'updateProjectInvitation', 
            '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/update_project_invitation.rb