/** * mongocamp-server * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.2.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 * as runtime from '../runtime'; import { Metric, SettingsResponse } from '../models'; /** * */ export declare class ApplicationApi extends runtime.BaseAPI { /** * Returns the Metrics of events of the running MongoCamp Application. * Event Metrics */ eventMetricsRaw(initOverrides?: RequestInit): Promise>>; /** * Returns the Metrics of events of the running MongoCamp Application. * Event Metrics */ eventMetrics(initOverrides?: RequestInit): Promise>; /** * Returns the JVM Metrics of the running MongoCamp Application * JVM Metrics */ jvmMetricsRaw(initOverrides?: RequestInit): Promise>>; /** * Returns the JVM Metrics of the running MongoCamp Application * JVM Metrics */ jvmMetrics(initOverrides?: RequestInit): Promise>; /** * Returns the MongoDB Metrics of the running MongoCamp Application * MongoDb Metrics */ mongoDbMetricsRaw(initOverrides?: RequestInit): Promise>>; /** * Returns the MongoDB Metrics of the running MongoCamp Application * MongoDb Metrics */ mongoDbMetrics(initOverrides?: RequestInit): Promise>; /** * Returns the Settings of the running MongoCamp Application. * System Settings */ settingsRaw(initOverrides?: RequestInit): Promise>; /** * Returns the Settings of the running MongoCamp Application. * System Settings */ settings(initOverrides?: RequestInit): Promise; /** * Returns the Metrics of the MongoCamp System * System Metrics */ systemMetricsRaw(initOverrides?: RequestInit): Promise>>; /** * Returns the Metrics of the MongoCamp System * System Metrics */ systemMetrics(initOverrides?: RequestInit): Promise>; }