UNPKG

@climatepartner/climatepartner-api-sdk

Version:

The ClimatePartner API provides one uniform public API to customers of ClimatePartner.

64 lines (63 loc) 2.17 kB
/** * ClimatePartner API Healthcheck Service * A Unified API for all ClimatePartner products * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { Configuration } from '../configuration'; import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios'; import { type RequestArgs, BaseAPI } from '../base'; import type { HealthcheckResponse } from '../models'; /** * HealthcheckServiceApi - axios parameter creator */ export declare const HealthcheckServiceApiAxiosParamCreator: (configuration?: Configuration) => { /** * * @summary Healthcheck! * @param {*} [options] Override http request option. * @throws {RequiredError} */ healthcheck: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>; }; /** * HealthcheckServiceApi - functional programming interface */ export declare const HealthcheckServiceApiFp: (configuration?: Configuration) => { /** * * @summary Healthcheck! * @param {*} [options] Override http request option. * @throws {RequiredError} */ healthcheck(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthcheckResponse>>; }; /** * HealthcheckServiceApi - factory interface */ export declare const HealthcheckServiceApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => { /** * * @summary Healthcheck! * @param {*} [options] Override http request option. * @throws {RequiredError} */ healthcheck(options?: RawAxiosRequestConfig): AxiosPromise<HealthcheckResponse>; }; /** * HealthcheckServiceApi - object-oriented interface */ export declare class HealthcheckServiceApi extends BaseAPI { /** * * @summary Healthcheck! * @param {*} [options] Override http request option. * @throws {RequiredError} */ healthcheck(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthcheckResponse, any, {}>>; }