module Gitlab::Client::Pipelines

def pipeline_variables(project, id)

Returns:
  • (Array) -

Parameters:
  • id (Integer) -- The ID of a pipeline.
  • project (Integer, String) -- The ID or name of a project.
def pipeline_variables(project, id)
  get("/projects/#{url_encode project}/pipelines/#{id}/variables")
end