Package | Description |
---|---|
org.gitlab4j.api |
Modifier and Type | Method and Description |
---|---|
DeployKey |
DeployKeysApi.addDeployKey(Object projectIdOrPath,
String title,
String key,
Boolean canPush)
Creates a new deploy key for a project.
|
DeployKey |
DeployKeysApi.enableDeployKey(Object projectIdOrPath,
Integer keyId)
Enables a deploy key for a project so this can be used.
|
DeployKey |
DeployKeysApi.getDeployKey(Object projectIdOrPath,
Integer keyId)
Get a single deploy key for the specified project.
|
Modifier and Type | Method and 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.
|
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.
|
Copyright © 2019. All rights reserved.