2024-04-30 00:31:10 +00:00
|
|
|
import { SandboxInfo } from 'app/common/SandboxInfo';
|
2024-03-04 21:22:47 +00:00
|
|
|
|
|
|
|
export type BootProbeIds =
|
|
|
|
'boot-page' |
|
|
|
|
'health-check' |
|
|
|
|
'reachable' |
|
|
|
|
'host-header' |
|
2024-04-30 00:31:10 +00:00
|
|
|
'sandboxing' |
|
2024-03-04 21:22:47 +00:00
|
|
|
'system-user'
|
|
|
|
;
|
|
|
|
|
|
|
|
export interface BootProbeResult {
|
|
|
|
verdict?: string;
|
|
|
|
success?: boolean;
|
|
|
|
done?: boolean;
|
|
|
|
severity?: 'fault' | 'warning' | 'hmm';
|
|
|
|
details?: Record<string, any>;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface BootProbeInfo {
|
|
|
|
id: BootProbeIds;
|
|
|
|
name: string;
|
|
|
|
}
|
|
|
|
|
2024-04-30 00:31:10 +00:00
|
|
|
export type SandboxingBootProbeDetails = SandboxInfo;
|