import "../ApiClient-fBZ10h6n.mjs"; import { t as ServerConfigLiveness_default } from "../ServerConfigLiveness-C62J7Tal.mjs"; import { t as WorkerTaskRestartStrategy } from "../WorkerTaskRestartStrategy-CXYJhhQE.mjs"; //#region src/model/ServerConfig.d.ts type IServerConfig = { workerTaskRestartStrategy: WorkerTaskRestartStrategy; terminationGracePeriod: string; liveness: ServerConfigLiveness_default; }; /** * @typedef {Object} IServerConfig * @property {WorkerTaskRestartStrategy} workerTaskRestartStrategy * @property {String} terminationGracePeriod * @property {ServerConfigLiveness} liveness */ /** * The ServerConfig model module. * @module model/ServerConfig * @type {IServerConfig} */ declare class ServerConfig { /** * 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, terminationGracePeriod: any): void; /** * Constructs a ServerConfig 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/ServerConfig} obj Optional instance to populate. * @return {module:model/ServerConfig} The populated ServerConfig instance. */ static constructFromObject(data: any, obj: any): any; /** * Validates the JSON data with respect to ServerConfig. * @param {Object} data The plain JavaScript object bearing properties of interest. * @return {boolean} to indicate whether the JSON data is valid with respect to ServerConfig. */ static validateJSON(data: any): boolean; /** * Constructs a new ServerConfig. * @alias module:model/ServerConfig * @param {String} terminationGracePeriod - */ constructor(terminationGracePeriod: string); workerTaskRestartStrategy: WorkerTaskRestartStrategy; terminationGracePeriod: string; liveness: ServerConfigLiveness_default; } declare namespace ServerConfig { let RequiredProperties: string[]; } //#endregion export { IServerConfig, ServerConfig as default };