/* 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 Volume */ export interface Volume { /** * unique identifier of a volume * @type {string} * @memberof Volume */ id: any; /** * volume size in GiB * @type {number} * @memberof Volume */ size: any; /** * volume identification string - used in environment generation * @type {string} * @memberof Volume */ volumeId: any; /** * user identification string that own the volume * @type {string} * @memberof Volume */ userId: any; /** * organization identification string that own the volume * @type {string} * @memberof Volume */ organizationId: any; /** * current volume status * @type {string} * @memberof Volume */ status: VolumeStatusEnum; } /** * @export * @enum {string} */ export enum VolumeStatusEnum { STABLE = 'STABLE', UPDATING = 'UPDATING', DELETING = 'DELETING' }