module Gitlab::Client::Runners

def all_runners(options = {})

Returns:
  • (Array) -

Options Hash: (**options)
  • :tag_list(optional) (String) -- List of the runners tags (separated by comma)
  • :status(optional) (String) -- The status of runners to show, one of: active, paused, online, offline
  • :type(optional) (String) -- The type of runners to show, one of: instance_type, group_type, project_type

Parameters:
  • options (Hash) -- A customizable set of options.

Other tags:
    See: https://docs.gitlab.com/ce/api/runners.html#list-all-runners -
def all_runners(options = {})
  get('/runners/all', query: options)
end