List<Runner> |
RunnersApi.getAllRunners(Runner.RunnerStatus scope) |
Get a list of all runners in the GitLab instance (specific and shared).
|
Pager<Runner> |
RunnersApi.getAllRunners(Runner.RunnerStatus scope,
int itemsPerPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getAllRunners(Runner.RunnerStatus scope,
Integer page,
Integer perPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
Stream<Runner> |
RunnersApi.getAllRunnersStream(Runner.RunnerStatus scope) |
Get a Stream of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getRunners(Runner.RunnerStatus scope) |
Get a list of all available runners available to the user with pagination support.
|
Pager<Runner> |
RunnersApi.getRunners(Runner.RunnerStatus scope,
int itemsPerPage) |
Get a list of specific runners available to the user.
|
List<Runner> |
RunnersApi.getRunners(Runner.RunnerStatus scope,
Integer page,
Integer perPage) |
Get a list of specific runners available to the user.
|
Stream<Runner> |
RunnersApi.getRunnersStream(Runner.RunnerStatus scope) |
Get a Stream of all available runners available to the user with pagination support.
|