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