UNPKG

@codingame/kubevirt-api

Version:

kubevirt OpenAPI automation for TypeScript

47 lines (46 loc) 1.51 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 { V1DHCPPrivateOptions } from './'; /** * Extra DHCP options to use in the interface. * @export * @interface V1DHCPOptions */ export interface V1DHCPOptions { /** * If specified will pass option 67 to interface's DHCP server * @type {string} * @memberof V1DHCPOptions */ bootFileName?: string; /** * If specified will pass the configured NTP server to the VM via DHCP option 042. * @type {Array<string>} * @memberof V1DHCPOptions */ ntpServers?: Array<string>; /** * If specified will pass extra DHCP options for private use, range: 224-254 * @type {Array<V1DHCPPrivateOptions>} * @memberof V1DHCPOptions */ privateOptions?: Array<V1DHCPPrivateOptions>; /** * If specified will pass option 66 to interface's DHCP server * @type {string} * @memberof V1DHCPOptions */ tftpServerName?: string; } export declare function V1DHCPOptionsFromJSON(json: any): V1DHCPOptions; export declare function V1DHCPOptionsFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1DHCPOptions; export declare function V1DHCPOptionsToJSON(value?: V1DHCPOptions | null): any;