/** * 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 Port */ export interface Port { /** * unique identifier of a port this identifier could be null during port exposition. use port listing to discover the stack identification number * @type {string} * @memberof Port */ id: any; /** * url can be 'null' in during port generation. Check environment status to confirm port generation * @type {string} * @memberof Port */ url: any; /** * exposed port number * @type {number} * @memberof Port */ port: any; /** * environment relation with this port * @type {string} * @memberof Port */ environmentId: any; /** * port exposition mode * @type {string} * @memberof Port */ expose: PortExposeEnum; /** * current environment status * @type {string} * @memberof Port */ status: PortStatusEnum; } /** * @export * @enum {string} */ export declare enum PortExposeEnum { Authenticated = "authenticated", Public = "public" } /** * @export * @enum {string} */ export declare enum PortStatusEnum { STABLE = "STABLE", UPDATING = "UPDATING", DELETING = "DELETING" }