module Gitlab::Client::ProjectExports

def export_project(id, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) -

Options Hash: (**options)
  • upload[http_method](optional) (String) -- The HTTP method to upload the exported project. Only PUT and POST methods allowed. Default is PUT
  • upload[url] (String) -- TThe URL to upload the project
  • upload(optional) (hash) -- Hash that contains the information to upload the exported project to a web server
  • description(optional) (String) -- Overrides the project description

Parameters:
  • options (Hash) -- A customizable set of options.
  • id (Integer, String) -- The ID or path of a project.
def export_project(id, options = {})
  post("/projects/#{url_encode id}/export", body: options)
end