UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

17 lines 424 B
import { FixedIp } from './FixedIp'; /** Interface */ export interface Interface { /** List of ips of the interface */ fixedIps: FixedIp[]; /** Interface unique identifier */ id: string; /** Mac address */ macAddress: string; /** Network id */ networkId: string; /** Openstack state */ state: string; /** Network type */ type: string; } //# sourceMappingURL=Interface.d.ts.map