blob: 829ef63a841c255bb8b44c7aaf71bab531b237be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
/**
* Redfish type definitions
* These mirror the Redfish schema and preserve PascalCase property names
*/
/**
* Redfish Status object
*/
export interface RedfishStatus {
State?: string;
Health?: string;
HealthRollup?: string;
}
/**
* Redfish Sensor Thresholds
*/
export interface SensorThresholds {
LowerCritical?: {
Reading?: number;
Activation?: string;
};
LowerCaution?: {
Reading?: number;
Activation?: string;
};
UpperCaution?: {
Reading?: number;
Activation?: string;
};
UpperCritical?: {
Reading?: number;
Activation?: string;
};
}
/**
* Redfish Sensor resource
* Preserves Redfish property names (PascalCase)
*/
export interface Sensor {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
Status?: RedfishStatus;
Reading?: number;
ReadingUnits?: string;
ReadingType?: string;
Thresholds?: SensorThresholds;
// Legacy properties for backward compatibility
ReadingCelsius?: number;
ReadingVolts?: number;
LowerThresholdNonCritical?: number;
UpperThresholdNonCritical?: number;
LowerThresholdCritical?: number;
UpperThresholdCritical?: number;
}
/**
* Redfish Memory resource
*/
export interface Memory {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
Status?: RedfishStatus;
CapacityMiB?: number;
MemoryDeviceType?: string;
Manufacturer?: string;
PartNumber?: string;
SerialNumber?: string;
}
/**
* Redfish Drive resource
*/
export interface Drive {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
Status?: RedfishStatus;
CapacityBytes?: number;
MediaType?: string;
Manufacturer?: string;
Model?: string;
SerialNumber?: string;
Protocol?: string;
}
/**
* Redfish Processor resource
*/
export interface Processor {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
Status?: RedfishStatus;
ProcessorType?: string;
ProcessorArchitecture?: string;
InstructionSet?: string;
Manufacturer?: string;
Model?: string;
MaxSpeedMHz?: number;
TotalCores?: number;
TotalThreads?: number;
}
/**
* Redfish PowerLimitWatts (EnvironmentMetrics)
*/
export interface PowerLimitWatts {
SetPoint?: number;
AllowableMin?: number;
AllowableMax?: number;
ControlMode?: 'Automatic' | 'Disabled' | 'Manual' | 'Override';
}
export interface EnvironmentMetrics {
'@odata.id': string;
'@odata.type'?: string;
Id?: string;
Name?: string;
PowerLimitWatts?: PowerLimitWatts;
PowerWatts?: { Reading?: number };
}
/**
* Redfish Chassis resource
*/
export interface Chassis {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
ChassisType?: string;
Manufacturer?: string;
Model?: string;
SerialNumber?: string;
PartNumber?: string;
Status?: RedfishStatus;
Sensors?: { '@odata.id': string };
Thermal?: { '@odata.id': string };
Power?: { '@odata.id': string };
PowerSubsystem?: { '@odata.id': string };
EnvironmentMetrics?: { '@odata.id': string };
}
/**
* Redfish System resource
*/
export interface System {
'@odata.id': string;
'@odata.type': string;
Id: string;
Name: string;
SystemType?: string;
Manufacturer?: string;
Model?: string;
SerialNumber?: string;
PartNumber?: string;
Status?: RedfishStatus;
PowerState?: string;
BiosVersion?: string;
Memory?: { '@odata.id': string };
Processors?: { '@odata.id': string };
}
|