Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method | Description |
---|---|---|
DeployKey |
DeployKeysApi.addDeployKey(Integer projectId,
String title,
String key,
Boolean canPush) |
Creates a new deploy key for a project.
|
DeployKey |
DeployKeysApi.enableDeployKey(Integer projectId,
Integer keyId) |
Enables a deploy key for a project so this can be used.
|
DeployKey |
DeployKeysApi.getDeployKey(Integer projectId,
Integer keyId) |
Get a single deploy key for the specified project.
|
Modifier and Type | Method | Description |
---|---|---|
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.
|
Optional<DeployKey> |
DeployKeysApi.getOptionalDeployKey(Integer projectId,
Integer keyId) |
Get a single deploy key for the specified project as an Optional instance.
|
List<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Integer projectId) |
Get a list of the deploy keys for the specified project.
|
List<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Integer projectId,
int page,
int perPage) |
Get a list of the deploy keys for the specified project using the specified page and per page settings.
|
Pager<DeployKey> |
DeployKeysApi.getProjectDeployKeys(Integer projectId,
Integer itemsPerPage) |
Get a Pager of the deploy keys for the specified project.
|
Copyright © 2018. All rights reserved.