module Gitlab::Client::ProjectReleaseLinks

def update_project_release_link(project, tag_name, link_id, options = {})

Returns:
  • (Gitlab::ObjectifiedHash) - Information about the updated release link.

Options Hash: (**options)
  • :url(optional) (String) -- The URL of the link.
  • :name(optional) (String) -- The name of the link.

Parameters:
  • options (Hash) -- A customizable set of options.
  • link_id (Integer) -- The id of the link.
  • tag_name (String) -- The tag where the release will be created from.
  • project (Integer, String) -- The ID or name of a project.
def update_project_release_link(project, tag_name, link_id, options = {})
  put("/projects/#{url_encode project}/releases/#{tag_name}/assets/links/#{link_id}", body: options)
end