UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

35 lines (34 loc) 1.06 kB
/** * KubeVirt API * This is KubeVirt API an add-on for Kubernetes. * * The version of the OpenAPI document: 1.0.0 * Contact: kubevirt-dev@googlegroups.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { V1InitrdInfo, V1KernelInfo } from './'; /** * KernelBootStatus contains info about the kernelBootContainer * @export * @interface V1KernelBootStatus */ export interface V1KernelBootStatus { /** * * @type {V1InitrdInfo} * @memberof V1KernelBootStatus */ initrdInfo?: V1InitrdInfo; /** * * @type {V1KernelInfo} * @memberof V1KernelBootStatus */ kernelInfo?: V1KernelInfo; } export declare function V1KernelBootStatusFromJSON(json: any): V1KernelBootStatus; export declare function V1KernelBootStatusFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KernelBootStatus; export declare function V1KernelBootStatusToJSON(value?: V1KernelBootStatus | null): any;