@codingame/kubevirt-api
Version:
kubevirt OpenAPI automation for TypeScript
76 lines (75 loc) • 2.66 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.
*/
/**
*
* @export
* @interface V1VirtualMachineInstanceNetworkInterface
*/
export interface V1VirtualMachineInstanceNetworkInterface {
/**
* Specifies the origin of the interface data collected. values: domain, guest-agent, multus-status.
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
infoSource?: string;
/**
* The interface name inside the Virtual Machine
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
interfaceName?: string;
/**
* IP address of a Virtual Machine interface. It is always the first item of IPs
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
ipAddress?: string;
/**
* List of all IP addresses of a Virtual Machine interface
* @type {Array<string>}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
ipAddresses?: Array<string>;
/**
* LinkState Reports the current operational link state`. values: up, down.
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
linkState?: string;
/**
* Hardware address of a Virtual Machine interface
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
mac?: string;
/**
* Name of the interface, corresponds to name of the network assigned to the interface
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
name?: string;
/**
* PodInterfaceName represents the name of the pod network interface
* @type {string}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
podInterfaceName?: string;
/**
* Specifies how many queues are allocated by MultiQueue
* @type {number}
* @memberof V1VirtualMachineInstanceNetworkInterface
*/
queueCount?: number;
}
export declare function V1VirtualMachineInstanceNetworkInterfaceFromJSON(json: any): V1VirtualMachineInstanceNetworkInterface;
export declare function V1VirtualMachineInstanceNetworkInterfaceFromJSONTyped(json: any, _ignoreDiscriminator: boolean): V1VirtualMachineInstanceNetworkInterface;
export declare function V1VirtualMachineInstanceNetworkInterfaceToJSON(value?: V1VirtualMachineInstanceNetworkInterface | null): any;