@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
28 lines (27 loc) • 1.36 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.
*/
/**
* ExecAction describes a "run in container" action.
* @export
* @interface IoK8sApiCoreV1ExecAction
*/
export interface IoK8sApiCoreV1ExecAction {
/**
* Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.
* @type {Array<string>}
* @memberof IoK8sApiCoreV1ExecAction
*/
command?: Array<string>;
}
export declare function IoK8sApiCoreV1ExecActionFromJSON(json: any): IoK8sApiCoreV1ExecAction;
export declare function IoK8sApiCoreV1ExecActionFromJSONTyped(json: any, _ignoreDiscriminator: boolean): IoK8sApiCoreV1ExecAction;
export declare function IoK8sApiCoreV1ExecActionToJSON(value?: IoK8sApiCoreV1ExecAction | null): any;