List<DeployKey> |
DeployKeysApi.getDeployKeys() |
Get a list of all deploy keys across all projects of the GitLab instance.
|
Pager<DeployKey> |
DeployKeysApi.getDeployKeys(int itemsPerPage) |
Get a Pager of all deploy keys across all projects of the GitLab instance.
|
List<DeployKey> |
DeployKeysApi.getDeployKeys(int page,
int perPage) |
Get a list of all deploy keys across all projects of the GitLab instance using the specified page and per page settings.
|
Stream<DeployKey> |
DeployKeysApi.getDeployKeysStream() |
Get a Stream of all deploy keys across all projects of the GitLab instance.
|
Optional<DeployKey> |
DeployKeysApi.getOptionalDeployKey(Object projectIdOrPath,
Integer keyId) |
Get a single deploy key for the specified project as an Optional instance.
|
List<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Object projectIdOrPath) |
Get a list of the deploy keys for the specified project.
|
Pager<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Object projectIdOrPath,
int itemsPerPage) |
Get a Pager of the deploy keys for the specified project.
|
List<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Object projectIdOrPath,
int page,
int perPage) |
Get a list of the deploy keys for the specified project using the specified page and per page settings.
|
Stream<DeployKey> |
DeployKeysApi.getProjectDeployKeysStream(Object projectIdOrPath) |
Get a list of the deploy keys for the specified project.
|