Package | Description |
---|---|
org.gitlab4j.api | |
org.gitlab4j.api.models |
Modifier and Type | Method and Description |
---|---|
Runner |
RunnersApi.disableRunner(Object projectIdOrPath,
Integer runnerId)
Disable a specific runner from the project.
|
Runner |
RunnersApi.enableRunner(Object projectIdOrPath,
Integer runnerId)
Enable an available specific runner in the project.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Class and Description |
---|---|
class |
RunnerDetail |
Modifier and Type | Method and Description |
---|---|
Runner |
Job.getRunner() |
Runner |
Deployable.getRunner() |
Runner |
Runner.withActive(Boolean active) |
Runner |
Runner.withDescription(String description) |
Runner |
Runner.withId(Integer id) |
Runner |
Runner.withIpAddress(String ipAddress) |
Runner |
Runner.withIsShared(Boolean isShared) |
Runner |
Runner.withName(String name) |
Runner |
Runner.withOnline(Boolean online) |
Runner |
Runner.withStatus(Runner.RunnerStatus status) |
Modifier and Type | Method and Description |
---|---|
void |
Job.setRunner(Runner runner) |
void |
Deployable.setRunner(Runner runner) |
Job |
Job.withRunner(Runner runner) |
Copyright © 2019. All rights reserved.