RunnerInfoedit

Information about a given runner

Propertiesedit

connected (boolean, required)
Specifies if the runner is connected
containers (array[RunnerContainerInfo], required)
Containers for the runner
healthy (boolean, required)
Specifies if the runner is healthy
host_ip (string, required)
Host IP for the runner
public_hostname (string, required)
Public hostname for the runner
roles (array[RunnerRoleInfo], required)
Roles for the runner
runner_id (string, required)
The runner identifier

Exampleedit

{
   "connected" : true,
   "containers" : [
      {
         "container_name" : "string",
         "container_set_name" : "string"
      }
   ],
   "healthy" : true,
   "host_ip" : "string",
   "public_hostname" : "string",
   "roles" : [
      {
         "role_name" : "string"
      }
   ],
   "runner_id" : "string"
}