new lib version [CI SKIP]

This commit is contained in:
2020-12-22 14:30:44 +00:00
parent 284f3303c3
commit 52ac2efc67
66 changed files with 799 additions and 122 deletions

View File

@@ -6,7 +6,7 @@ class RunnerService {
/**
* Get all
* Lists all runners.
* @result ResponseRunner
* @returns ResponseRunner
* @throws ApiError
*/
static async runnerControllerGetAll() {
@@ -20,7 +20,7 @@ class RunnerService {
* Post
* Create a new runner object (id will be generated automagicly).
* @param requestBody CreateRunner
* @result any
* @returns any
* @throws ApiError
*/
static async runnerControllerPost(requestBody) {
@@ -35,7 +35,7 @@ class RunnerService {
* Get one
* Returns a runner of a specified id (if it exists)
* @param id
* @result ResponseRunner
* @returns ResponseRunner
* @throws ApiError
*/
static async runnerControllerGetOne(id) {
@@ -50,7 +50,7 @@ class RunnerService {
* Update a runner object (id can't be changed).
* @param id
* @param requestBody UpdateRunner
* @result ResponseRunner
* @returns ResponseRunner
* @throws ApiError
*/
static async runnerControllerPut(id, requestBody) {
@@ -66,8 +66,8 @@ class RunnerService {
* Delete a specified runner (if it exists).
* @param id
* @param force
* @result ResponseRunner
* @result ResponseEmpty
* @returns ResponseRunner
* @returns ResponseEmpty
* @throws ApiError
*/
static async runnerControllerRemove(id, force) {