-
Methods in org.gitlab4j.api that return types with arguments of type Runner
Modifier and Type |
Method |
Description |
List<Runner> |
RunnersApi.getAllRunners() |
Get a list of all runners in the GitLab instance (specific and shared).
|
Pager<Runner> |
RunnersApi.getAllRunners(int itemsPerPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getAllRunners(int page,
int perPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getAllRunners(Runner.RunnerType type,
Runner.RunnerStatus status) |
Get a list of all runners in the GitLab instance (specific and shared).
|
Pager<Runner> |
RunnersApi.getAllRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int itemsPerPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getAllRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int page,
int perPage) |
Get a list of all runners in the GitLab instance (specific and shared).
|
Stream<Runner> |
RunnersApi.getAllRunnersStream() |
Get a Stream of all runners in the GitLab instance (specific and shared).
|
Stream<Runner> |
RunnersApi.getAllRunnersStream(Runner.RunnerType type,
Runner.RunnerStatus status) |
Get a Stream of all runners in the GitLab instance (specific and shared).
|
List<Runner> |
RunnersApi.getProjectRunners(Object projectIdOrPath) |
List all runners (specific and shared) available in the project.
|
Pager<Runner> |
RunnersApi.getProjectRunners(Object projectIdOrPath,
int itemsPerPage) |
List all runners (specific and shared) available in the project.
|
Stream<Runner> |
RunnersApi.getProjectRunnersStream(Object projectIdOrPath) |
Get a Stream all runners (specific and shared) available in the project.
|
List<Runner> |
RunnersApi.getRunners() |
Get a list of all available runners available to the user.
|
Pager<Runner> |
RunnersApi.getRunners(int itemsPerPage) |
Get a list of all available runners available to the user.
|
List<Runner> |
RunnersApi.getRunners(int page,
int perPage) |
Get a list of all available runners available to the user with pagination support.
|
List<Runner> |
RunnersApi.getRunners(Runner.RunnerType type,
Runner.RunnerStatus status) |
Get a list of all available runners available to the user with pagination support.
|
Pager<Runner> |
RunnersApi.getRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int itemsPerPage) |
Get a list of specific runners available to the user.
|
List<Runner> |
RunnersApi.getRunners(Runner.RunnerType type,
Runner.RunnerStatus status,
int page,
int perPage) |
Get a list of specific runners available to the user.
|
Stream<Runner> |
RunnersApi.getRunnersStream() |
Get a Stream of all available runners available to the user.
|
Stream<Runner> |
RunnersApi.getRunnersStream(Runner.RunnerType type,
Runner.RunnerStatus status) |
Get a Stream of all available runners available to the user with pagination support.
|
-