UNPKG

@datatr-ux/ovhcloud-types

Version:

TypeScript types for OVHCloud projects

19 lines 676 B
import { StatusEnum } from './status/StatusEnum'; /** OVHcloud Connect L3 peering current status */ export interface PopConfStatus { /** Number of flap since last UP */ flapCount?: number; /** Last time the interface changed status */ lastChange?: string; /** Last time the interface status went from up to down */ lastDown?: string; /** Last time the session flapped */ lastFlap?: string; /** Last time the interface status went from down to up */ lastUp?: string; /** Last time the status was updated */ lastUpdate: string; /** Status of the peering */ status: StatusEnum; } //# sourceMappingURL=PopConfStatus.d.ts.map