MCPcopy
hub / github.com/AnalogJ/scrutiny / DeviceModel

Interface DeviceModel

webapp/frontend/src/app/core/models/device-model.ts:2–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// maps to webapp/backend/pkg/models/device.go
2export interface DeviceModel {
3 archived?: boolean;
4 scrutiny_uuid: string;
5 wwn: string;
6 device_name?: string;
7 device_uuid?: string;
8 device_serial_id?: string;
9 device_label?: string;
10
11 manufacturer: string;
12 model_name: string;
13 interface_type: string;
14 interface_speed: string;
15 serial_number: string;
16 firmware: string;
17 rotational_speed: number;
18 capacity: number;
19 form_factor: string;
20 smart_support: boolean;
21 device_protocol: string;
22 device_type: string;
23
24 label: string;
25 host_id: string;
26
27 device_status: number;
28}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected