/* tslint:disable */ /* eslint-disable */ /** * IDE API * Handle user environment * * OpenAPI spec version: 1.0.0 * Contact: dev@corley.it * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ /** * * @export * @interface PatchEnvironment */ export interface PatchEnvironment { /** * the instance type for this environment * @type {string} * @memberof PatchEnvironment */ instanceType?: PatchEnvironmentInstanceTypeEnum; /** * suspend the environment * @type {boolean} * @memberof PatchEnvironment */ suspended?: any; } /** * @export * @enum {string} */ export enum PatchEnvironmentInstanceTypeEnum { T3Micro = 't3.micro', T3Small = 't3.small', T3Medium = 't3.medium', T3Large = 't3.large', T3Xlarge = 't3.xlarge', M5Large = 'm5.large', M5Xlarge = 'm5.xlarge', M52xlarge = 'm5.2xlarge' }