import type { CreateRunner } from '../models/CreateRunner'; import type { ResponseEmpty } from '../models/ResponseEmpty'; import type { ResponseRunner } from '../models/ResponseRunner'; import type { RunnerGroupNeededError } from '../models/RunnerGroupNeededError'; import type { RunnerGroupNotFoundError } from '../models/RunnerGroupNotFoundError'; import type { UpdateRunner } from '../models/UpdateRunner'; export declare class RunnerService { /** * Get all * Lists all runners. * @returns ResponseRunner * @throws ApiError */ static runnerControllerGetAll(): Promise>; /** * Post * Create a new runner object (id will be generated automagicly). * @param requestBody CreateRunner * @returns any * @throws ApiError */ static runnerControllerPost(requestBody?: CreateRunner): Promise<(ResponseRunner | RunnerGroupNeededError | RunnerGroupNotFoundError)>; /** * Get one * Returns a runner of a specified id (if it exists) * @param id * @returns ResponseRunner * @throws ApiError */ static runnerControllerGetOne(id: number): Promise; /** * Put * Update a runner object (id can't be changed). * @param id * @param requestBody UpdateRunner * @returns ResponseRunner * @throws ApiError */ static runnerControllerPut(id: number, requestBody?: UpdateRunner): Promise; /** * Remove * Delete a specified runner (if it exists). * @param id * @param force * @returns ResponseRunner * @returns ResponseEmpty * @throws ApiError */ static runnerControllerRemove(id: number, force?: boolean): Promise; }