@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
64 lines (63 loc) • 2.45 kB
TypeScript
/**
* Kubernetes
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: unversioned
*
*
* 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
* @interface IoK8sApiCoreV1ContainerStateTerminated
*/
export interface IoK8sApiCoreV1ContainerStateTerminated {
/**
* Container's ID in the format '<type>://<container_id>'
* @type {string}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
containerID?: string;
/**
* Exit status from the last termination of the container
* @type {number}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
exitCode: number;
/**
* Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
* @type {string}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
finishedAt?: string;
/**
* Message regarding the last termination of the container
* @type {string}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
message?: string;
/**
* (brief) reason from the last termination of the container
* @type {string}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
reason?: string;
/**
* Signal from the last termination of the container
* @type {number}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
signal?: number;
/**
* Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.
* @type {string}
* @memberof IoK8sApiCoreV1ContainerStateTerminated
*/
startedAt?: string;
}
export declare function IoK8sApiCoreV1ContainerStateTerminatedFromJSON(json: any): IoK8sApiCoreV1ContainerStateTerminated;
export declare function IoK8sApiCoreV1ContainerStateTerminatedFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1ContainerStateTerminated;
export declare function IoK8sApiCoreV1ContainerStateTerminatedToJSON(value?: IoK8sApiCoreV1ContainerStateTerminated | null): any;