Uses of Class
io.gitea.model.DeployKey
-
Packages that use DeployKey Package Description io.gitea.api io.gitea.model -
-
Uses of DeployKey in io.gitea.api
Methods in io.gitea.api that return DeployKey Modifier and Type Method Description DeployKeyRepositoryApi. repoCreateKey(java.lang.String owner, java.lang.String repo, CreateKeyOption body)Add a key to a repositoryDeployKeyRepositoryApi. repoGetKey(java.lang.String owner, java.lang.String repo, java.lang.Long id)Get a repository's key by idMethods 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 repositoryApiResponse<DeployKey>RepositoryApi. repoGetKeyWithHttpInfo(java.lang.String owner, java.lang.String repo, java.lang.Long id)Get a repository's key by idjava.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 keysApiResponse<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 keysMethod parameters in io.gitea.api with type arguments of type DeployKey Modifier and Type Method Description com.squareup.okhttp.CallRepositoryApi. repoCreateKeyAsync(java.lang.String owner, java.lang.String repo, CreateKeyOption body, ApiCallback<DeployKey> callback)Add a key to a repository (asynchronously)com.squareup.okhttp.CallRepositoryApi. 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.CallRepositoryApi. 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) -
Uses of DeployKey in io.gitea.model
Methods in io.gitea.model that return DeployKey Modifier and Type Method Description DeployKeyDeployKey. createdAt(org.threeten.bp.OffsetDateTime createdAt)DeployKeyDeployKey. fingerprint(java.lang.String fingerprint)DeployKeyDeployKey. id(java.lang.Long id)DeployKeyDeployKey. key(java.lang.String key)DeployKeyDeployKey. keyId(java.lang.Long keyId)DeployKeyDeployKey. readOnly(java.lang.Boolean readOnly)DeployKeyDeployKey. repository(Repository repository)DeployKeyDeployKey. title(java.lang.String title)DeployKeyDeployKey. url(java.lang.String url)
-