UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

12 lines 439 B
import { NetworkingTypeEnum } from './NetworkingTypeEnum'; import { MacAddress } from '../../MacAddress'; /** Interface or interfaces aggregation */ export interface Interfaces { /** Mac address of the LACP fallback interface */ aggregationFallback?: MacAddress; /** Mac address or list of mac addresses */ macs: MacAddress[]; /** Network type */ type: NetworkingTypeEnum; } //# sourceMappingURL=Interfaces.d.ts.map