/** * Hathora Cloud API * Welcome to the Hathora Cloud API documentation! Learn how to use the Hathora Cloud APIs to build and scale your game servers globally. * * The version of the OpenAPI document: 0.0.1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * Available metrics to query over time. * @export */ export declare const MetricName: { readonly Cpu: "cpu"; readonly Memory: "memory"; readonly RateEgress: "rate_egress"; readonly TotalEgress: "total_egress"; readonly ActiveConnections: "active_connections"; }; export type MetricName = typeof MetricName[keyof typeof MetricName]; export declare function MetricNameFromJSON(json: any): MetricName; export declare function MetricNameFromJSONTyped(json: any, ignoreDiscriminator: boolean): MetricName; export declare function MetricNameToJSON(value?: MetricName | null): any;