/** * Cloud API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * 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 { ApiStatsDto } from '../models'; import { ApiVersionsDto } from '../models'; /** * ServerApi - axios parameter creator * @export */ export declare const ServerApiAxiosParamCreator: (axiosClientConfiguration?: Configuration) => { /** * * @summary returns stats about the cloud api server * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiStats: (options?: any) => Promise; /** * * @summary endpoint for api versions * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiVersion: (options?: any) => Promise; /** * * @summary Root endpoint that redirects you to this documentation * @param {*} [options] Override http request option. * @throws {RequiredError} */ gotoDocumentation: (options?: any) => Promise; }; /** * ServerApi - functional programming interface * @export */ export declare const ServerApiFp: (axiosClientConfiguration?: Configuration) => { /** * * @summary returns stats about the cloud api server * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiStats(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary endpoint for api versions * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiVersion(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; /** * * @summary Root endpoint that redirects you to this documentation * @param {*} [options] Override http request option. * @throws {RequiredError} */ gotoDocumentation(options?: any): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise>; }; /** * ServerApi - factory interface * @export */ export declare const ServerApiFactory: (axiosClientConfiguration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary returns stats about the cloud api server * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiStats(options?: any): AxiosPromise; /** * * @summary endpoint for api versions * @param {*} [options] Override http request option. * @throws {RequiredError} */ getApiVersion(options?: any): AxiosPromise; /** * * @summary Root endpoint that redirects you to this documentation * @param {*} [options] Override http request option. * @throws {RequiredError} */ gotoDocumentation(options?: any): AxiosPromise; }; /** * ServerApi - object-oriented interface * @export * @class ServerApi * @extends {BaseAPI} */ export declare class ServerApi extends BaseAPI { /** * * @summary returns stats about the cloud api server * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ServerApi */ getApiStats(options?: any): Promise>; /** * * @summary endpoint for api versions * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ServerApi */ getApiVersion(options?: any): Promise>; /** * * @summary Root endpoint that redirects you to this documentation * @param {*} [options] Override http request option. * @throws {RequiredError} * @memberof ServerApi */ gotoDocumentation(options?: any): Promise>; }