Uses of Class
org.gitlab4j.api.models.DeployKey
Package | Description |
---|---|
org.gitlab4j.api |
-
Uses of DeployKey in org.gitlab4j.api
Methods in org.gitlab4j.api that return DeployKey Modifier and Type Method 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.DeployKey
DeployKeysApi. updateDeployKey(Object projectIdOrPath, Integer deployKeyId, String title, Boolean canPush)
Updates an existing project deploy key.Methods in org.gitlab4j.api that return types with arguments of type DeployKey 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.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.