node-ovh-ts
Version:
OVH API wrapper library for TypeScript
20 lines (17 loc) • 919 B
TypeScript
import { OvertheboxConfigurationNetworkInterfaceTypeEnum } from './OvertheboxConfigurationNetworkInterfaceTypeEnum.js';
import { OvertheboxConfigurationNetworkInterfaceMultipathEnum } from './OvertheboxConfigurationNetworkInterfaceMultipathEnum.js';
import { OvertheboxConfigurationNetworkInterfaceProtoEnum } from './OvertheboxConfigurationNetworkInterfaceProtoEnum.js';
type OvertheboxConfigurationTypesNetworkInterface = {
gateway?: string | null;
ifname: string;
interfaceName: string;
ip?: string | null;
ipv6?: boolean | null;
mtu?: number | null;
multipath?: OvertheboxConfigurationNetworkInterfaceMultipathEnum | null;
netmask?: string | null;
protocol?: OvertheboxConfigurationNetworkInterfaceProtoEnum | null;
routingTable?: string | null;
type?: OvertheboxConfigurationNetworkInterfaceTypeEnum | null;
};
export { OvertheboxConfigurationTypesNetworkInterface };