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