module Gitlab::Client::Runners

def group_runners(group, 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.
  • id (Integer, String) -- The ID or name of a project.

Other tags:
    See: https://docs.gitlab.com/ee/api/runners.html#list-groups-runners -
def group_runners(group, options = {})
  get("/groups/#{url_encode group}/runners", query: options)
end