Uses of Class
org.gitlab4j.api.models.DeployKey
Packages that use DeployKey
-
Uses of DeployKey in org.gitlab4j.api
Methods in org.gitlab4j.api that return DeployKeyModifier and TypeMethodDescriptionDeployKeysApi.addDeployKey
(Object projectIdOrPath, String title, String key, Boolean canPush) Creates a new deploy key for a project.DeployKeysApi.enableDeployKey
(Object projectIdOrPath, Long keyId) Enables a deploy key for a project so this can be used.DeployKeysApi.getDeployKey
(Object projectIdOrPath, Long keyId) Get a single deploy key for the specified project.DeployKeysApi.updateDeployKey
(Object projectIdOrPath, Long deployKeyId, String title, Boolean canPush) Updates an existing project deploy key.Methods in org.gitlab4j.api that return types with arguments of type DeployKeyModifier and TypeMethodDescriptionDeployKeysApi.getDeployKeys()
Get a list of all deploy keys across all projects of the GitLab instance.DeployKeysApi.getDeployKeys
(int itemsPerPage) Get a Pager of all deploy keys across all projects of the GitLab instance.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.DeployKeysApi.getDeployKeysStream()
Get a Stream of all deploy keys across all projects of the GitLab instance.DeployKeysApi.getOptionalDeployKey
(Object projectIdOrPath, Long keyId) Get a single deploy key for the specified project as an Optional instance.DeployKeysApi.getProjectDeployKeys
(Object projectIdOrPath) Get a list of the deploy keys for the specified project.DeployKeysApi.getProjectDeployKeys
(Object projectIdOrPath, int itemsPerPage) Get a Pager of the deploy keys for the specified project.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.DeployKeysApi.getProjectDeployKeysStream
(Object projectIdOrPath) Get a list of the deploy keys for the specified project.