UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

40 lines (39 loc) 1.15 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. */ /** * * @export * @interface V1ArchSpecificConfiguration */ export interface V1ArchSpecificConfiguration { /** * * @type {Array<string>} * @memberof V1ArchSpecificConfiguration */ emulatedMachines?: Array<string>; /** * * @type {string} * @memberof V1ArchSpecificConfiguration */ machineType?: string; /** * * @type {string} * @memberof V1ArchSpecificConfiguration */ ovmfPath?: string; } export declare function V1ArchSpecificConfigurationFromJSON(json: any): V1ArchSpecificConfiguration; export declare function V1ArchSpecificConfigurationFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1ArchSpecificConfiguration; export declare function V1ArchSpecificConfigurationToJSON(value?: V1ArchSpecificConfiguration | null): any;