/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * OpenAPI spec version: * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { HttpFile } from '../http/http'; /** * Bindings of commands to events. Each command is referred-to by its name. */ export class V1alpha2DevWorkspaceSpecTemplateEvents { /** * IDs of commands that should be executed after the devworkspace is completely started. In the case of Che-Theia, these commands should be executed after all plugins and extensions have started, including project cloning. This means that those commands are not triggered until the user opens the IDE in his browser. */ 'postStart'?: Array; /** * IDs of commands that should be executed after stopping the devworkspace. */ 'postStop'?: Array; /** * IDs of commands that should be executed before the devworkspace start. Kubernetes-wise, these commands would typically be executed in init containers of the devworkspace POD. */ 'preStart'?: Array; /** * IDs of commands that should be executed before stopping the devworkspace. */ 'preStop'?: Array; static readonly discriminator: string | undefined = undefined; static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [ { "name": "postStart", "baseName": "postStart", "type": "Array", "format": "" }, { "name": "postStop", "baseName": "postStop", "type": "Array", "format": "" }, { "name": "preStart", "baseName": "preStart", "type": "Array", "format": "" }, { "name": "preStop", "baseName": "preStop", "type": "Array", "format": "" } ]; static getAttributeTypeMap() { return V1alpha2DevWorkspaceSpecTemplateEvents.attributeTypeMap; } public constructor() { } }