@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
35 lines (34 loc) • 1.13 kB
TypeScript
/**
* 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 { V1KernelBootContainer } from './';
/**
* Represents the firmware blob used to assist in the kernel boot process. Used for setting the kernel, initrd and command line arguments
* @export
* @interface V1KernelBoot
*/
export interface V1KernelBoot {
/**
*
* @type {V1KernelBootContainer}
* @memberof V1KernelBoot
*/
container?: V1KernelBootContainer;
/**
* Arguments to be passed to the kernel at boot time
* @type {string}
* @memberof V1KernelBoot
*/
kernelArgs?: string;
}
export declare function V1KernelBootFromJSON(json: any): V1KernelBoot;
export declare function V1KernelBootFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1KernelBoot;
export declare function V1KernelBootToJSON(value?: V1KernelBoot | null): any;