/** * 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 PatchProfile */ export interface PatchProfile { /** * the name of a profile * @type {string} * @memberof PatchProfile */ name?: any; /** * the volume related with this profile * @type {string} * @memberof PatchProfile */ volumeId?: any; /** * the AMI related with this profile * @type {string} * @memberof PatchProfile */ image?: any; /** * the instance type for this profile * @type {string} * @memberof PatchProfile */ instanceType?: PatchProfileInstanceTypeEnum; /** * the domain associated with this domain * @type {string} * @memberof PatchProfile */ hostname?: any; /** * the organization unique identifier * @type {string} * @memberof PatchProfile */ organizationId?: any; } /** * @export * @enum {string} */ export declare enum PatchProfileInstanceTypeEnum { T3Micro = "t3.micro", T3Small = "t3.small", T3Medium = "t3.medium", T3Large = "t3.large", T3Xlarge = "t3.xlarge", M5Large = "m5.large", M5Xlarge = "m5.xlarge", M52xlarge = "m5.2xlarge" }