/** * 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 Connection */ export interface Connection { /** * unique identifier of a port * @type {string} * @memberof Connection */ id: any; /** * port uri (can also be a tcp or udp exposition) * @type {string} * @memberof Connection */ uri: any; /** * exposed port number * @type {number} * @memberof Connection */ port: any; /** * environment relation with this port * @type {string} * @memberof Connection */ environmentId: any; /** * allow connections from this CIDR/IP * @type {string} * @memberof Connection */ cidrIp: any; /** * current environment status * @type {string} * @memberof Connection */ status: ConnectionStatusEnum; } /** * @export * @enum {string} */ export declare enum ConnectionStatusEnum { STABLE = "STABLE", UPDATING = "UPDATING", DELETING = "DELETING" }