UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

28 lines (27 loc) 1.04 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. */ /** * MachinePreferences contains various optional defaults for Machine. * @export * @interface V1beta1MachinePreferences */ export interface V1beta1MachinePreferences { /** * PreferredMachineType optionally defines the preferred machine type to use. * @type {string} * @memberof V1beta1MachinePreferences */ preferredMachineType?: string; } export declare function V1beta1MachinePreferencesFromJSON(json: any): V1beta1MachinePreferences; export declare function V1beta1MachinePreferencesFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1beta1MachinePreferences; export declare function V1beta1MachinePreferencesToJSON(value?: V1beta1MachinePreferences | null): any;