@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
15 lines • 545 B
TypeScript
import { StatusEnum } from './status/StatusEnum';
/** OVHcloud Connect Interface status */
export interface InterfaceStatus {
/** Last time the interface changed status */
lastChange?: string;
/** Last time the interface status went from up to down */
lastDown?: string;
/** Last time the interface status went from down to up */
lastUp?: string;
/** Last time the status was updated */
lastUpdate: string;
/** Status of the interface */
status: StatusEnum;
}
//# sourceMappingURL=InterfaceStatus.d.ts.map