/** * Kubernetes * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1.22.2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * ContainerStateTerminated is a terminated state of a container. */ export declare class V1ContainerStateTerminated { /** * Container\'s ID in the format \'docker://\' */ 'containerID'?: string; /** * Exit status from the last termination of the container */ 'exitCode': number; /** * Time at which the container last terminated */ 'finishedAt'?: Date; /** * Message regarding the last termination of the container */ 'message'?: string; /** * (brief) reason from the last termination of the container */ 'reason'?: string; /** * Signal from the last termination of the container */ 'signal'?: number; /** * Time at which previous execution of the container started */ 'startedAt'?: Date; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }