mirror of
https://codeberg.org/gitnex/tea4j-autodeploy
synced 2026-05-31 07:01:55 +00:00
Synchronizing API and documentation updates
This commit is contained in:
+8
-8
@@ -10,7 +10,7 @@ Method | HTTP request | Description
|
||||
[**adminCreateOrg**](AdminApi.md#adminCreateOrg) | **POST** admin/users/{username}/orgs | Create an organization
|
||||
[**adminCreatePublicKey**](AdminApi.md#adminCreatePublicKey) | **POST** admin/users/{username}/keys | Add a public key on behalf of a user
|
||||
[**adminCreateRepo**](AdminApi.md#adminCreateRepo) | **POST** admin/users/{username}/repos | Create a repository on behalf of a user
|
||||
[**adminCreateRunnerRegistrationToken**](AdminApi.md#adminCreateRunnerRegistrationToken) | **POST** admin/actions/runners/registration-token | Get an global actions runner registration token
|
||||
[**adminCreateRunnerRegistrationToken**](AdminApi.md#adminCreateRunnerRegistrationToken) | **POST** admin/actions/runners/registration-token | Get a global actions runner registration token
|
||||
[**adminCreateUser**](AdminApi.md#adminCreateUser) | **POST** admin/users | Create a user
|
||||
[**adminCronList**](AdminApi.md#adminCronList) | **GET** admin/cron | List cron tasks
|
||||
[**adminCronRun**](AdminApi.md#adminCronRun) | **POST** admin/cron/{task} | Run cron task
|
||||
@@ -24,15 +24,15 @@ Method | HTTP request | Description
|
||||
[**adminGetAllEmails**](AdminApi.md#adminGetAllEmails) | **GET** admin/emails | List all emails
|
||||
[**adminGetAllOrgs**](AdminApi.md#adminGetAllOrgs) | **GET** admin/orgs | List all organizations
|
||||
[**adminGetHook**](AdminApi.md#adminGetHook) | **GET** admin/hooks/{id} | Get a hook
|
||||
[**adminGetRunnerRegistrationToken**](AdminApi.md#adminGetRunnerRegistrationToken) | **GET** admin/runners/registration-token | Get an global actions runner registration token
|
||||
[**adminGetRunnerRegistrationToken**](AdminApi.md#adminGetRunnerRegistrationToken) | **GET** admin/runners/registration-token | Get a global actions runner registration token
|
||||
[**adminListHooks**](AdminApi.md#adminListHooks) | **GET** admin/hooks | List system's webhooks
|
||||
[**adminListUserBadges**](AdminApi.md#adminListUserBadges) | **GET** admin/users/{username}/badges | List a user's badges
|
||||
[**adminRenameUser**](AdminApi.md#adminRenameUser) | **POST** admin/users/{username}/rename | Rename a user
|
||||
[**adminSearchEmails**](AdminApi.md#adminSearchEmails) | **GET** admin/emails/search | Search all emails
|
||||
[**adminSearchUsers**](AdminApi.md#adminSearchUsers) | **GET** admin/users | Search users according filter conditions
|
||||
[**adminUnadoptedList**](AdminApi.md#adminUnadoptedList) | **GET** admin/unadopted | List unadopted repositories
|
||||
[**deleteAdminRunner**](AdminApi.md#deleteAdminRunner) | **DELETE** admin/actions/runners/{runner_id} | Delete an global runner
|
||||
[**getAdminRunner**](AdminApi.md#getAdminRunner) | **GET** admin/actions/runners/{runner_id} | Get an global runner
|
||||
[**deleteAdminRunner**](AdminApi.md#deleteAdminRunner) | **DELETE** admin/actions/runners/{runner_id} | Delete a global runner
|
||||
[**getAdminRunner**](AdminApi.md#getAdminRunner) | **GET** admin/actions/runners/{runner_id} | Get a global runner
|
||||
[**getAdminRunners**](AdminApi.md#getAdminRunners) | **GET** admin/actions/runners | Get all runners
|
||||
[**listAdminWorkflowJobs**](AdminApi.md#listAdminWorkflowJobs) | **GET** admin/actions/jobs | Lists all jobs
|
||||
[**listAdminWorkflowRuns**](AdminApi.md#listAdminWorkflowRuns) | **GET** admin/actions/runs | Lists all runs
|
||||
@@ -573,7 +573,7 @@ Name | Type | Description | Notes
|
||||
# **adminCreateRunnerRegistrationToken**
|
||||
> Void adminCreateRunnerRegistrationToken()
|
||||
|
||||
Get an global actions runner registration token
|
||||
Get a global actions runner registration token
|
||||
|
||||
### Example
|
||||
```java
|
||||
@@ -1805,7 +1805,7 @@ Name | Type | Description | Notes
|
||||
# **adminGetRunnerRegistrationToken**
|
||||
> Void adminGetRunnerRegistrationToken()
|
||||
|
||||
Get an global actions runner registration token
|
||||
Get a global actions runner registration token
|
||||
|
||||
### Example
|
||||
```java
|
||||
@@ -2448,7 +2448,7 @@ Name | Type | Description | Notes
|
||||
# **deleteAdminRunner**
|
||||
> Void deleteAdminRunner(runnerId)
|
||||
|
||||
Delete an global runner
|
||||
Delete a global runner
|
||||
|
||||
### Example
|
||||
```java
|
||||
@@ -2535,7 +2535,7 @@ Name | Type | Description | Notes
|
||||
# **getAdminRunner**
|
||||
> Void getAdminRunner(runnerId)
|
||||
|
||||
Get an global runner
|
||||
Get a global runner
|
||||
|
||||
### Example
|
||||
```java
|
||||
|
||||
@@ -95,7 +95,7 @@ public interface AdminApi {
|
||||
@retrofit2.http.Body CreateRepoOption body, @retrofit2.http.Path("username") String username);
|
||||
|
||||
/**
|
||||
* Get an global actions runner registration token
|
||||
* Get a global actions runner registration token
|
||||
*
|
||||
* @return Call<Void>
|
||||
*/
|
||||
@@ -243,7 +243,7 @@ public interface AdminApi {
|
||||
Call<Hook> adminGetHook(@retrofit2.http.Path("id") Long id);
|
||||
|
||||
/**
|
||||
* Get an global actions runner registration token
|
||||
* Get a global actions runner registration token
|
||||
*
|
||||
* @return Call<Void>
|
||||
*/
|
||||
@@ -353,7 +353,7 @@ public interface AdminApi {
|
||||
@retrofit2.http.Query("pattern") String pattern);
|
||||
|
||||
/**
|
||||
* Delete an global runner
|
||||
* Delete a global runner
|
||||
*
|
||||
* @param runnerId id of the runner (required)
|
||||
* @return Call<Void>
|
||||
@@ -362,7 +362,7 @@ public interface AdminApi {
|
||||
Call<Void> deleteAdminRunner(@retrofit2.http.Path("runner_id") String runnerId);
|
||||
|
||||
/**
|
||||
* Get an global runner
|
||||
* Get a global runner
|
||||
*
|
||||
* @param runnerId id of the runner (required)
|
||||
* @return Call<Void>
|
||||
|
||||
Reference in New Issue
Block a user