56 lines
1.4 KiB
TypeScript
56 lines
1.4 KiB
TypeScript
/**
|
|
* 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://<container_id>\'
|
|
*/
|
|
'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;
|
|
}[];
|
|
}
|