import "../ApiClient-fBZ10h6n.mjs"; import { t as ServerInstanceType } from "../ServerInstanceType-CwvVeo6m.mjs"; //#region src/model/ServerInstance.d.ts type IServerInstance = { id: string; type: ServerInstanceType; version: string; hostname: string; props: any; /** * :model/Metric>} metrics */ "": Array; }; /** * @typedef {Object} IServerInstance * @property {String} id * @property {ServerInstanceType} type * @property {String} version * @property {String} hostname * @property {Object.} props * @property {Array.} metrics */ /** * The ServerInstance model module. * @module model/ServerInstance * @type {IServerInstance} */ declare class ServerInstance { /** * Initializes the fields of this object. * This method is used by the constructors of any subclasses, in order to implement multiple inheritance (mix-ins). * Only for internal use. */ static initialize(obj: any, id: any, type: any, version: any, hostname: any, props: any, metrics: any): void; /** * Constructs a ServerInstance from a plain JavaScript object, optionally creating a new instance. * Copies all relevant properties from data to obj if supplied or a new instance if not. * @param {Object} data The plain JavaScript object bearing properties of interest. * @param {module:model/ServerInstance} obj Optional instance to populate. * @return {module:model/ServerInstance} The populated ServerInstance instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ServerInstance. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ServerInstance. */ static validateJSON(data: any): boolean; /** * Constructs a new ServerInstance. * @alias module:model/ServerInstance * @param {String} id - * @param {module:model/ServerInstanceType} type - * @param {String} version - * @param {String} hostname - * @param {Object.} props - * @param {Array.} metrics - */ constructor(id: string, type: any, version: string, hostname: string, props: any, metrics: any); id: string; type: ServerInstanceType; version: string; hostname: string; props: any; metrics: any; } declare namespace ServerInstance { let RequiredProperties: string[]; } //#endregion export { IServerInstance, ServerInstance as default };