-
Methods in io.gitea.api that return types with arguments of type DeployKey
| Modifier and Type |
Method |
Description |
ApiResponse<DeployKey> |
RepositoryApi.repoCreateKeyWithHttpInfo(java.lang.String owner,
java.lang.String repo,
CreateKeyOption body) |
Add a key to a repository
|
ApiResponse<DeployKey> |
RepositoryApi.repoGetKeyWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Long id) |
Get a repository's key by id
|
java.util.List<DeployKey> |
RepositoryApi.repoListKeys(java.lang.String owner,
java.lang.String repo,
java.lang.Integer keyId,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List a repository's keys
|
ApiResponse<java.util.List<DeployKey>> |
RepositoryApi.repoListKeysWithHttpInfo(java.lang.String owner,
java.lang.String repo,
java.lang.Integer keyId,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit) |
List a repository's keys
|
Method parameters in io.gitea.api with type arguments of type DeployKey
| Modifier and Type |
Method |
Description |
com.squareup.okhttp.Call |
RepositoryApi.repoCreateKeyAsync(java.lang.String owner,
java.lang.String repo,
CreateKeyOption body,
ApiCallback<DeployKey> callback) |
Add a key to a repository (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoGetKeyAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Long id,
ApiCallback<DeployKey> callback) |
Get a repository's key by id (asynchronously)
|
com.squareup.okhttp.Call |
RepositoryApi.repoListKeysAsync(java.lang.String owner,
java.lang.String repo,
java.lang.Integer keyId,
java.lang.String fingerprint,
java.lang.Integer page,
java.lang.Integer limit,
ApiCallback<java.util.List<DeployKey>> callback) |
List a repository's keys (asynchronously)
|
-