//#region src/model/SupportDebugInfoDeploymentType.d.ts /** * Enum SupportDebugInfoDeploymentType * @type {{ * "KUBERNETES": "KUBERNETES","DOCKER_COMPOSE": "DOCKER_COMPOSE","DOCKER": "DOCKER","STANDALONE": "STANDALONE", * }} */ declare const SupportDebugInfoDeploymentTypeStatic: { "KUBERNETES": "KUBERNETES"; "DOCKER_COMPOSE": "DOCKER_COMPOSE"; "DOCKER": "DOCKER"; "STANDALONE": "STANDALONE"; }; /** * Enum class SupportDebugInfoDeploymentType. * @enum {} * @readonly */ declare class SupportDebugInfoDeploymentType { /** * Returns a SupportDebugInfoDeploymentType enum value from a Javascript object name. * @param {Object} data The plain JavaScript object containing the name of the enum value. * @return {module:model/SupportDebugInfoDeploymentType} The enum SupportDebugInfoDeploymentType value. */ static constructFromObject(object: any): any; /** * value: "KUBERNETES" * @const */ KUBERNETES: string; /** * value: "DOCKER_COMPOSE" * @const */ DOCKER_COMPOSE: string; /** * value: "DOCKER" * @const */ DOCKER: string; /** * value: "STANDALONE" * @const */ STANDALONE: string; } /** * * */ type SupportDebugInfoDeploymentType = any; //#endregion export { SupportDebugInfoDeploymentType, SupportDebugInfoDeploymentType as default, SupportDebugInfoDeploymentTypeStatic };