Sha256: 14c612fd6ee0c2822cdfc3fc6c7472216393e18f467df9ab6bf2f442ccca62eb

Contents?: true

Size: 493 Bytes

Versions: 1

Compression:

Stored size: 493 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/deleteProjectInvitation.html]
        def delete_project_invitation(id, options={})
          options.merge!(
            'command' => 'deleteProjectInvitation', 
            'id' => id  
          )
          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_project_invitation.rb