/** * Webitel API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 24.04.0 * Contact: support@webitel.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { AxiosPromise, AxiosInstance } from 'axios'; import { Configuration } from '../configuration'; import { RequestArgs, BaseAPI } from '../base'; import { StorageBackendProfile } from '../api'; import { StorageCreateBackendProfileRequest } from '../api'; import { StorageListBackendProfile } from '../api'; import { StoragePatchBackendProfileRequest } from '../api'; import { StorageUpdateBackendProfileRequest } from '../api'; /** * BackendProfileServiceApi - axios parameter creator * @export */ export declare const BackendProfileServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary Create BackendProfile * @param {StorageCreateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createBackendProfile: (body: StorageCreateBackendProfileRequest, options?: any) => Promise; /** * * @summary Remove BackendProfile * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteBackendProfile: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary Patch BackendProfile * @param {string} id * @param {StoragePatchBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchBackendProfile: (id: string, body: StoragePatchBackendProfileRequest, options?: any) => Promise; /** * * @summary BackendProfile item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readBackendProfile: (id: string, domainId?: string, options?: any) => Promise; /** * * @summary List of BackendProfile * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchBackendProfile: (page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, options?: any) => Promise; /** * * @summary Update BackendProfile * @param {string} id * @param {StorageUpdateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateBackendProfile: (id: string, body: StorageUpdateBackendProfileRequest, options?: any) => Promise; }; /** * BackendProfileServiceApi - functional programming interface * @export */ export declare const BackendProfileServiceApiFp: (configuration?: Configuration) => { /** * * @summary Create BackendProfile * @param {StorageCreateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createBackendProfile(body: StorageCreateBackendProfileRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Remove BackendProfile * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteBackendProfile(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Patch BackendProfile * @param {string} id * @param {StoragePatchBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchBackendProfile(id: string, body: StoragePatchBackendProfileRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary BackendProfile item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readBackendProfile(id: string, domainId?: string, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary List of BackendProfile * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchBackendProfile(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Update BackendProfile * @param {string} id * @param {StorageUpdateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateBackendProfile(id: string, body: StorageUpdateBackendProfileRequest, options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * BackendProfileServiceApi - factory interface * @export */ export declare const BackendProfileServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary Create BackendProfile * @param {StorageCreateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ createBackendProfile(body: StorageCreateBackendProfileRequest, options?: any): AxiosPromise; /** * * @summary Remove BackendProfile * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ deleteBackendProfile(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary Patch BackendProfile * @param {string} id * @param {StoragePatchBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ patchBackendProfile(id: string, body: StoragePatchBackendProfileRequest, options?: any): AxiosPromise; /** * * @summary BackendProfile item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} */ readBackendProfile(id: string, domainId?: string, options?: any): AxiosPromise; /** * * @summary List of BackendProfile * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {*} [options] Override http request option. * @throws {RequiredError} */ searchBackendProfile(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, options?: any): AxiosPromise; /** * * @summary Update BackendProfile * @param {string} id * @param {StorageUpdateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} */ updateBackendProfile(id: string, body: StorageUpdateBackendProfileRequest, options?: any): AxiosPromise; }; /** * BackendProfileServiceApi - object-oriented interface * @export * @class BackendProfileServiceApi * @extends {BaseAPI} */ export declare class BackendProfileServiceApi extends BaseAPI { /** * * @summary Create BackendProfile * @param {StorageCreateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ createBackendProfile(body: StorageCreateBackendProfileRequest, options?: any): Promise>; /** * * @summary Remove BackendProfile * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ deleteBackendProfile(id: string, domainId?: string, options?: any): Promise>; /** * * @summary Patch BackendProfile * @param {string} id * @param {StoragePatchBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ patchBackendProfile(id: string, body: StoragePatchBackendProfileRequest, options?: any): Promise>; /** * * @summary BackendProfile item * @param {string} id * @param {string} [domainId] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ readBackendProfile(id: string, domainId?: string, options?: any): Promise>; /** * * @summary List of BackendProfile * @param {number} [page] * @param {number} [size] * @param {string} [q] * @param {string} [sort] * @param {Array} [fields] * @param {Array} [id] * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ searchBackendProfile(page?: number, size?: number, q?: string, sort?: string, fields?: Array, id?: Array, options?: any): Promise>; /** * * @summary Update BackendProfile * @param {string} id * @param {StorageUpdateBackendProfileRequest} body * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof BackendProfileServiceApi */ updateBackendProfile(id: string, body: StorageUpdateBackendProfileRequest, options?: any): Promise>; } //# sourceMappingURL=backend-profile-service-api.d.ts.map