HardwareMonitor 1.2.0__py3-none-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (54) hide show
  1. HardwareMonitor/Hardware/CPU/__init__.py +3 -0
  2. HardwareMonitor/Hardware/CPU/__init__.pyi +64 -0
  3. HardwareMonitor/Hardware/Controller/AeroCool/__init__.py +3 -0
  4. HardwareMonitor/Hardware/Controller/AeroCool/__init__.pyi +9 -0
  5. HardwareMonitor/Hardware/Controller/AquaComputer/__init__.py +3 -0
  6. HardwareMonitor/Hardware/Controller/AquaComputer/__init__.pyi +9 -0
  7. HardwareMonitor/Hardware/Controller/MSI/__init__.py +3 -0
  8. HardwareMonitor/Hardware/Controller/MSI/__init__.pyi +91 -0
  9. HardwareMonitor/Hardware/Controller/__init__.py +0 -0
  10. HardwareMonitor/Hardware/Gpu/__init__.py +3 -0
  11. HardwareMonitor/Hardware/Gpu/__init__.pyi +6 -0
  12. HardwareMonitor/Hardware/Motherboard/Lpc/EC/__init__.py +3 -0
  13. HardwareMonitor/Hardware/Motherboard/Lpc/EC/__init__.pyi +83 -0
  14. HardwareMonitor/Hardware/Motherboard/Lpc/__init__.py +0 -0
  15. HardwareMonitor/Hardware/Motherboard/__init__.py +3 -0
  16. HardwareMonitor/Hardware/Motherboard/__init__.pyi +420 -0
  17. HardwareMonitor/Hardware/PowerMonitor/__init__.py +3 -0
  18. HardwareMonitor/Hardware/PowerMonitor/__init__.pyi +26 -0
  19. HardwareMonitor/Hardware/Psu/Corsair/__init__.py +3 -0
  20. HardwareMonitor/Hardware/Psu/Corsair/__init__.pyi +9 -0
  21. HardwareMonitor/Hardware/Psu/Msi/__init__.py +3 -0
  22. HardwareMonitor/Hardware/Psu/Msi/__init__.pyi +9 -0
  23. HardwareMonitor/Hardware/Psu/__init__.py +3 -0
  24. HardwareMonitor/Hardware/Psu/__init__.pyi +7 -0
  25. HardwareMonitor/Hardware/Storage/__init__.py +3 -0
  26. HardwareMonitor/Hardware/Storage/__init__.pyi +49 -0
  27. HardwareMonitor/Hardware/__init__.py +3 -0
  28. HardwareMonitor/Hardware/__init__.pyi +968 -0
  29. HardwareMonitor/Interop/PowerMonitor/__init__.py +3 -0
  30. HardwareMonitor/Interop/PowerMonitor/__init__.pyi +251 -0
  31. HardwareMonitor/Interop/__init__.py +3 -0
  32. HardwareMonitor/PawnIo/__init__.py +3 -0
  33. HardwareMonitor/PawnIo/__init__.pyi +109 -0
  34. HardwareMonitor/Software/__init__.py +3 -0
  35. HardwareMonitor/Software/__init__.pyi +9 -0
  36. HardwareMonitor/Util.py +200 -0
  37. HardwareMonitor/__init__.py +51 -0
  38. HardwareMonitor/_util/types.py +0 -0
  39. HardwareMonitor/_util/types.pyi +239 -0
  40. HardwareMonitor/lib/BlackSharp.Core.dll +0 -0
  41. HardwareMonitor/lib/DiskInfoToolkit.dll +0 -0
  42. HardwareMonitor/lib/HidSharp.dll +0 -0
  43. HardwareMonitor/lib/LICENSE +373 -0
  44. HardwareMonitor/lib/LibreHardwareMonitorLib.dll +0 -0
  45. HardwareMonitor/lib/RAMSPDToolkit-NDD.dll +0 -0
  46. HardwareMonitor/lib/System.Memory.dll +0 -0
  47. HardwareMonitor/lib/System.Numerics.Vectors.dll +0 -0
  48. HardwareMonitor/lib/System.Runtime.CompilerServices.Unsafe.dll +0 -0
  49. HardwareMonitor/lib/__init__.py +0 -0
  50. hardwaremonitor-1.2.0.dist-info/METADATA +198 -0
  51. hardwaremonitor-1.2.0.dist-info/RECORD +54 -0
  52. hardwaremonitor-1.2.0.dist-info/WHEEL +5 -0
  53. hardwaremonitor-1.2.0.dist-info/licenses/LICENSE +29 -0
  54. hardwaremonitor-1.2.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,968 @@
1
+ from . import Cpu, Gpu, Motherboard, PowerMonitor, Psu, Storage
2
+ from HardwareMonitor._util.types import AsyncCallback, Byte, DateTime, IAsyncResult, IDictionary, IReadOnlyList, IntPtr, Nullable, Object, Single, TimeSpan, UInt16, UInt32, UInt64
3
+ from typing import Iterable, List, Set, overload
4
+ __all__ = ['Cpu','Gpu','Motherboard','PowerMonitor','Psu','Storage']
5
+
6
+
7
+
8
+ class BaseBoardInformation(InformationBase):
9
+ @property
10
+ def ManufacturerName(self) -> str: ...
11
+ @property
12
+ def ProductName(self) -> str: ...
13
+ @property
14
+ def SerialNumber(self) -> str: ...
15
+ @property
16
+ def Version(self) -> str: ...
17
+
18
+
19
+ class BiosInformation(InformationBase):
20
+ @property
21
+ def Date(self) -> Nullable: ...
22
+ @property
23
+ def Size(self) -> Nullable: ...
24
+ @property
25
+ def Vendor(self) -> str: ...
26
+ @property
27
+ def Version(self) -> str: ...
28
+
29
+
30
+ class CacheAssociativity(int):
31
+ Other = 1
32
+ Unknown = 2
33
+ DirectMapped = 3
34
+ _2Way = 4
35
+ _4Way = 5
36
+ FullyAssociative = 6
37
+ _8Way = 7
38
+ _16Way = 8
39
+ _12Way = 9
40
+ _24Way = 10
41
+ _32Way = 11
42
+ _48Way = 12
43
+ _64Way = 13
44
+ _20Way = 14
45
+
46
+
47
+ class CacheDesignation(int):
48
+ Other = 0
49
+ L1 = 1
50
+ L2 = 2
51
+ L3 = 3
52
+
53
+
54
+ class CacheInformation(InformationBase):
55
+ @property
56
+ def Associativity(self) -> CacheAssociativity: ...
57
+ @property
58
+ def Designation(self) -> CacheDesignation: ...
59
+ @property
60
+ def Handle(self) -> UInt16: ...
61
+ @property
62
+ def Size(self) -> UInt16: ...
63
+
64
+
65
+ class Computer:
66
+ @overload
67
+ def __init__(self): ...
68
+ @overload
69
+ def __init__(self, settings: ISettings): ...
70
+ def Accept(self, visitor: IVisitor) -> None: ...
71
+ def add_HardwareAdded(self, value: HardwareEventHandler) -> None: ...
72
+ def add_HardwareRemoved(self, value: HardwareEventHandler) -> None: ...
73
+ def Close(self) -> None: ...
74
+ @property
75
+ def Hardware(self) -> List[IHardware]: ...
76
+ @property
77
+ def IsBatteryEnabled(self) -> bool: ...
78
+ @property
79
+ def IsControllerEnabled(self) -> bool: ...
80
+ @property
81
+ def IsCpuEnabled(self) -> bool: ...
82
+ @property
83
+ def IsGpuEnabled(self) -> bool: ...
84
+ @property
85
+ def IsMemoryEnabled(self) -> bool: ...
86
+ @property
87
+ def IsMotherboardEnabled(self) -> bool: ...
88
+ @property
89
+ def IsNetworkEnabled(self) -> bool: ...
90
+ @property
91
+ def IsPowerMonitorEnabled(self) -> bool: ...
92
+ @property
93
+ def IsPsuEnabled(self) -> bool: ...
94
+ @property
95
+ def IsStorageEnabled(self) -> bool: ...
96
+ @property
97
+ def SMBios(self) -> SMBios: ...
98
+ def GetReport(self) -> str: ...
99
+ def Open(self) -> None: ...
100
+ def remove_HardwareAdded(self, value: HardwareEventHandler) -> None: ...
101
+ def remove_HardwareRemoved(self, value: HardwareEventHandler) -> None: ...
102
+ def Reset(self) -> None: ...
103
+ @IsBatteryEnabled.setter
104
+ def IsBatteryEnabled(self, value: bool) -> None: ...
105
+ @IsControllerEnabled.setter
106
+ def IsControllerEnabled(self, value: bool) -> None: ...
107
+ @IsCpuEnabled.setter
108
+ def IsCpuEnabled(self, value: bool) -> None: ...
109
+ @IsGpuEnabled.setter
110
+ def IsGpuEnabled(self, value: bool) -> None: ...
111
+ @IsMemoryEnabled.setter
112
+ def IsMemoryEnabled(self, value: bool) -> None: ...
113
+ @IsMotherboardEnabled.setter
114
+ def IsMotherboardEnabled(self, value: bool) -> None: ...
115
+ @IsNetworkEnabled.setter
116
+ def IsNetworkEnabled(self, value: bool) -> None: ...
117
+ @IsPowerMonitorEnabled.setter
118
+ def IsPowerMonitorEnabled(self, value: bool) -> None: ...
119
+ @IsPsuEnabled.setter
120
+ def IsPsuEnabled(self, value: bool) -> None: ...
121
+ @IsStorageEnabled.setter
122
+ def IsStorageEnabled(self, value: bool) -> None: ...
123
+ def Traverse(self, visitor: IVisitor) -> None: ...
124
+
125
+
126
+ class ControlMode(int):
127
+ Undefined = 0
128
+ Software = 1
129
+ Default = 2
130
+
131
+
132
+ class CoreType(int):
133
+ Unknown = 0
134
+ Efficient = 32
135
+ Performance = 64
136
+
137
+
138
+ class GroupAffinity:
139
+ def __init__(self, group: UInt16, mask: UInt64): ...
140
+ def Equals(self, o: Object) -> bool: ...
141
+ @property
142
+ def Group(self) -> UInt16: ...
143
+ @property
144
+ def Mask(self) -> UInt64: ...
145
+ def GetHashCode(self) -> int: ...
146
+ def op_Equality(a1: GroupAffinity, a2: GroupAffinity) -> bool: ...
147
+ def op_Inequality(a1: GroupAffinity, a2: GroupAffinity) -> bool: ...
148
+ def Single(group: UInt16, index: int) -> GroupAffinity: ...
149
+
150
+
151
+ class Hardware:
152
+ def Accept(self, visitor: IVisitor) -> None: ...
153
+ def add_Closing(self, value: HardwareEventHandler) -> None: ...
154
+ def add_SensorAdded(self, value: SensorEventHandler) -> None: ...
155
+ def add_SensorRemoved(self, value: SensorEventHandler) -> None: ...
156
+ def Close(self) -> None: ...
157
+ @property
158
+ def HardwareType(self) -> HardwareType: ...
159
+ @property
160
+ def Identifier(self) -> Identifier: ...
161
+ @property
162
+ def Name(self) -> str: ...
163
+ @property
164
+ def Parent(self) -> IHardware: ...
165
+ @property
166
+ def Properties(self) -> IDictionary: ...
167
+ @property
168
+ def Sensors(self) -> Set[ISensor]: ...
169
+ @property
170
+ def SubHardware(self) -> Set[IHardware]: ...
171
+ def GetReport(self) -> str: ...
172
+ def remove_Closing(self, value: HardwareEventHandler) -> None: ...
173
+ def remove_SensorAdded(self, value: SensorEventHandler) -> None: ...
174
+ def remove_SensorRemoved(self, value: SensorEventHandler) -> None: ...
175
+ @Name.setter
176
+ def Name(self, value: str) -> None: ...
177
+ def Traverse(self, visitor: IVisitor) -> None: ...
178
+ def Update(self) -> None: ...
179
+
180
+
181
+ class HardwareEventHandler:
182
+ def __init__(self, object: Object, method: IntPtr): ...
183
+ def BeginInvoke(self, hardware: IHardware, callback: AsyncCallback, object: Object) -> IAsyncResult: ...
184
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
185
+ def Invoke(self, hardware: IHardware) -> None: ...
186
+
187
+
188
+ class HardwareType(int):
189
+ Motherboard = 0
190
+ SuperIO = 1
191
+ Cpu = 2
192
+ Memory = 3
193
+ GpuNvidia = 4
194
+ GpuAmd = 5
195
+ GpuIntel = 6
196
+ Storage = 7
197
+ Network = 8
198
+ Cooler = 9
199
+ EmbeddedController = 10
200
+ Psu = 11
201
+ Battery = 12
202
+ PowerMonitor = 13
203
+
204
+
205
+ class IComputer:
206
+ def add_HardwareAdded(self, value: HardwareEventHandler) -> None: ...
207
+ def add_HardwareRemoved(self, value: HardwareEventHandler) -> None: ...
208
+ @property
209
+ def Hardware(self) -> List[IHardware]: ...
210
+ @property
211
+ def IsBatteryEnabled(self) -> bool: ...
212
+ @property
213
+ def IsControllerEnabled(self) -> bool: ...
214
+ @property
215
+ def IsCpuEnabled(self) -> bool: ...
216
+ @property
217
+ def IsGpuEnabled(self) -> bool: ...
218
+ @property
219
+ def IsMemoryEnabled(self) -> bool: ...
220
+ @property
221
+ def IsMotherboardEnabled(self) -> bool: ...
222
+ @property
223
+ def IsNetworkEnabled(self) -> bool: ...
224
+ @property
225
+ def IsPowerMonitorEnabled(self) -> bool: ...
226
+ @property
227
+ def IsPsuEnabled(self) -> bool: ...
228
+ @property
229
+ def IsStorageEnabled(self) -> bool: ...
230
+ def GetReport(self) -> str: ...
231
+ def remove_HardwareAdded(self, value: HardwareEventHandler) -> None: ...
232
+ def remove_HardwareRemoved(self, value: HardwareEventHandler) -> None: ...
233
+
234
+
235
+ class IControl:
236
+ @property
237
+ def ControlMode(self) -> ControlMode: ...
238
+ @property
239
+ def Identifier(self) -> Identifier: ...
240
+ @property
241
+ def MaxSoftwareValue(self) -> Single: ...
242
+ @property
243
+ def MinSoftwareValue(self) -> Single: ...
244
+ @property
245
+ def Sensor(self) -> ISensor: ...
246
+ @property
247
+ def SoftwareValue(self) -> Single: ...
248
+ def SetDefault(self) -> None: ...
249
+ def SetSoftware(self, value: Single) -> None: ...
250
+
251
+
252
+ class ICriticalSensorLimits:
253
+ @property
254
+ def CriticalHighLimit(self) -> Nullable: ...
255
+ @property
256
+ def CriticalLowLimit(self) -> Nullable: ...
257
+
258
+
259
+ class Identifier:
260
+ @overload
261
+ def __init__(self, identifiers: Set[str]): ...
262
+ @overload
263
+ def __init__(self, dev: HidDevice): ...
264
+ @overload
265
+ def __init__(self, identifier: Identifier, extensions: Set[str]): ...
266
+ def CompareTo(self, other: Identifier) -> int: ...
267
+ def Equals(self, obj: Object) -> bool: ...
268
+ def GetHashCode(self) -> int: ...
269
+ def op_Equality(id1: Identifier, id2: Identifier) -> bool: ...
270
+ def op_GreaterThan(id1: Identifier, id2: Identifier) -> bool: ...
271
+ def op_Inequality(id1: Identifier, id2: Identifier) -> bool: ...
272
+ def op_LessThan(id1: Identifier, id2: Identifier) -> bool: ...
273
+ def ToString(self) -> str: ...
274
+
275
+
276
+ class IElement:
277
+ def Accept(self, visitor: IVisitor) -> None: ...
278
+ def Traverse(self, visitor: IVisitor) -> None: ...
279
+
280
+
281
+ class IHardware:
282
+ def add_SensorAdded(self, value: SensorEventHandler) -> None: ...
283
+ def add_SensorRemoved(self, value: SensorEventHandler) -> None: ...
284
+ @property
285
+ def HardwareType(self) -> HardwareType: ...
286
+ @property
287
+ def Identifier(self) -> Identifier: ...
288
+ @property
289
+ def Name(self) -> str: ...
290
+ @property
291
+ def Parent(self) -> IHardware: ...
292
+ @property
293
+ def Properties(self) -> IDictionary: ...
294
+ @property
295
+ def Sensors(self) -> Set[ISensor]: ...
296
+ @property
297
+ def SubHardware(self) -> Set[IHardware]: ...
298
+ def GetReport(self) -> str: ...
299
+ def remove_SensorAdded(self, value: SensorEventHandler) -> None: ...
300
+ def remove_SensorRemoved(self, value: SensorEventHandler) -> None: ...
301
+ @Name.setter
302
+ def Name(self, value: str) -> None: ...
303
+ def Update(self) -> None: ...
304
+
305
+
306
+ class InformationBase:
307
+ pass
308
+
309
+
310
+ class IParameter:
311
+ @property
312
+ def DefaultValue(self) -> Single: ...
313
+ @property
314
+ def Description(self) -> str: ...
315
+ @property
316
+ def Identifier(self) -> Identifier: ...
317
+ @property
318
+ def IsDefault(self) -> bool: ...
319
+ @property
320
+ def Name(self) -> str: ...
321
+ @property
322
+ def Sensor(self) -> ISensor: ...
323
+ @property
324
+ def Value(self) -> Single: ...
325
+ @IsDefault.setter
326
+ def IsDefault(self, value: bool) -> None: ...
327
+ @Value.setter
328
+ def Value(self, value: Single) -> None: ...
329
+
330
+
331
+ class ISensor:
332
+ def ClearValues(self) -> None: ...
333
+ @property
334
+ def Control(self) -> IControl: ...
335
+ @property
336
+ def Hardware(self) -> IHardware: ...
337
+ @property
338
+ def Identifier(self) -> Identifier: ...
339
+ @property
340
+ def Index(self) -> int: ...
341
+ @property
342
+ def IsDefaultHidden(self) -> bool: ...
343
+ @property
344
+ def Max(self) -> Nullable: ...
345
+ @property
346
+ def Min(self) -> Nullable: ...
347
+ @property
348
+ def Name(self) -> str: ...
349
+ @property
350
+ def Parameters(self) -> IReadOnlyList: ...
351
+ @property
352
+ def SensorType(self) -> SensorType: ...
353
+ @property
354
+ def Value(self) -> Nullable: ...
355
+ @property
356
+ def Values(self) -> Iterable[SensorValue]: ...
357
+ @property
358
+ def ValuesTimeWindow(self) -> TimeSpan: ...
359
+ def ResetMax(self) -> None: ...
360
+ def ResetMin(self) -> None: ...
361
+ @Name.setter
362
+ def Name(self, value: str) -> None: ...
363
+ @ValuesTimeWindow.setter
364
+ def ValuesTimeWindow(self, value: TimeSpan) -> None: ...
365
+
366
+
367
+ class ISensorLimits:
368
+ @property
369
+ def HighLimit(self) -> Nullable: ...
370
+ @property
371
+ def LowLimit(self) -> Nullable: ...
372
+
373
+
374
+ class ISettings:
375
+ def Contains(self, name: str) -> bool: ...
376
+ def GetValue(self, name: str, value: str) -> str: ...
377
+ def Remove(self, name: str) -> None: ...
378
+ def SetValue(self, name: str, value: str) -> None: ...
379
+
380
+
381
+ class IVisitor:
382
+ def VisitComputer(self, computer: IComputer) -> None: ...
383
+ def VisitHardware(self, hardware: IHardware) -> None: ...
384
+ def VisitParameter(self, parameter: IParameter) -> None: ...
385
+ def VisitSensor(self, sensor: ISensor) -> None: ...
386
+
387
+
388
+ class MemoryDevice(InformationBase):
389
+ @property
390
+ def BankLocator(self) -> str: ...
391
+ @property
392
+ def ConfiguredSpeed(self) -> UInt16: ...
393
+ @property
394
+ def ConfiguredVoltage(self) -> UInt16: ...
395
+ @property
396
+ def DeviceLocator(self) -> str: ...
397
+ @property
398
+ def ManufacturerName(self) -> str: ...
399
+ @property
400
+ def PartNumber(self) -> str: ...
401
+ @property
402
+ def SerialNumber(self) -> str: ...
403
+ @property
404
+ def Size(self) -> UInt32: ...
405
+ @property
406
+ def Speed(self) -> UInt16: ...
407
+ @property
408
+ def Type(self) -> MemoryType: ...
409
+
410
+
411
+ class MemoryType(int):
412
+ Other = 1
413
+ Unknown = 2
414
+ DRAM = 3
415
+ EDRAM = 4
416
+ VRAM = 5
417
+ SRAM = 6
418
+ RAM = 7
419
+ ROM = 8
420
+ FLASH = 9
421
+ EEPROM = 10
422
+ FEPROM = 11
423
+ EPROM = 12
424
+ CDRAM = 13
425
+ _3DRAM = 14
426
+ SDRAM = 15
427
+ SGRAM = 16
428
+ RDRAM = 17
429
+ DDR = 18
430
+ DDR2 = 19
431
+ DDR2_FBDIMM = 20
432
+ DDR3 = 24
433
+ FBD2 = 25
434
+ DDR4 = 26
435
+ LPDDR = 27
436
+ LPDDR2 = 28
437
+ LPDDR3 = 29
438
+ LPDDR4 = 30
439
+ LogicalNonVolatileDevice = 31
440
+ HBM = 32
441
+ HBM2 = 33
442
+ DDR5 = 34
443
+ LPDDR5 = 35
444
+
445
+
446
+ class ParameterDescription:
447
+ def __init__(self, name: str, description: str, defaultValue: Single): ...
448
+ @property
449
+ def DefaultValue(self) -> Single: ...
450
+ @property
451
+ def Description(self) -> str: ...
452
+ @property
453
+ def Name(self) -> str: ...
454
+
455
+
456
+ class ProcessorCharacteristics(int):
457
+ _None = 0
458
+ _64BitCapable = 1
459
+ MultiCore = 2
460
+ HardwareThread = 4
461
+ ExecuteProtection = 8
462
+ EnhancedVirtualization = 16
463
+ PowerPerformanceControl = 32
464
+ _128BitCapable = 64
465
+
466
+
467
+ class ProcessorFamily(int):
468
+ Other = 1
469
+ Intel8086 = 3
470
+ Intel80286 = 4
471
+ Intel386 = 5
472
+ Intel486 = 6
473
+ Intel8087 = 7
474
+ Intel80287 = 8
475
+ Intel80387 = 9
476
+ Intel80487 = 10
477
+ IntelPentium = 11
478
+ IntelPentiumPro = 12
479
+ IntelPentiumII = 13
480
+ IntelPentiumMMX = 14
481
+ IntelCeleron = 15
482
+ IntelPentiumIIXeon = 16
483
+ IntelPentiumIII = 17
484
+ M1 = 18
485
+ M2 = 19
486
+ IntelCeleronM = 20
487
+ IntelPentium4HT = 21
488
+ AmdDuron = 24
489
+ AmdK5 = 25
490
+ AmdK6 = 26
491
+ AmdK62 = 27
492
+ AmdK63 = 28
493
+ AmdAthlon = 29
494
+ Amd2900 = 30
495
+ AmdK62Plus = 31
496
+ PowerPc = 32
497
+ PowerPc601 = 33
498
+ PowerPc603 = 34
499
+ PowerPc603Plus = 35
500
+ PowerPc604 = 36
501
+ PowerPc620 = 37
502
+ PowerPcx704 = 38
503
+ PowerPc750 = 39
504
+ IntelCoreDuo = 40
505
+ IntelCoreDuoMobile = 41
506
+ IntelCoreSoloMobile = 42
507
+ IntelAtom = 43
508
+ IntelCoreM = 44
509
+ IntelCoreM3 = 45
510
+ IntelCoreM5 = 46
511
+ IntelCoreM7 = 47
512
+ Alpha = 48
513
+ Alpha21064 = 49
514
+ Alpha21066 = 50
515
+ Alpha21164 = 51
516
+ Alpha21164Pc = 52
517
+ Alpha21164a = 53
518
+ Alpha21264 = 54
519
+ Alpha21364 = 55
520
+ AmdTurionIIUltraDualCoreMobileM = 56
521
+ AmdTurionDualCoreMobileM = 57
522
+ AmdAthlonIIDualCoreM = 58
523
+ AmdOpteron6100Series = 59
524
+ AmdOpteron4100Series = 60
525
+ AmdOpteron6200Series = 61
526
+ AmdOpteron4200Series = 62
527
+ AmdFxSeries = 63
528
+ Mips = 64
529
+ MipsR4000 = 65
530
+ MipsR4200 = 66
531
+ MipsR4400 = 67
532
+ MipsR4600 = 68
533
+ MipsR10000 = 69
534
+ AmdCSeries = 70
535
+ AmdESeries = 71
536
+ AmdASeries = 72
537
+ AmdGSeries = 73
538
+ AmdZSeries = 74
539
+ AmdRSeries = 75
540
+ AmdOpteron4300Series = 76
541
+ AmdOpteron6300Series = 77
542
+ AmdOpteron3300Series = 78
543
+ AmdFireProSeries = 79
544
+ Sparc = 80
545
+ SuperSparc = 81
546
+ MicroSparcII = 82
547
+ MicroSparcIIep = 83
548
+ UltraSparc = 84
549
+ UltraSparcII = 85
550
+ UltraSparcIIi = 86
551
+ UltraSparcIII = 87
552
+ UltraSparcIIIi = 88
553
+ Motorola68040 = 96
554
+ Motorola68xxx = 97
555
+ Motorola68000 = 98
556
+ Motorola68010 = 99
557
+ Motorola68020 = 100
558
+ Motorola68030 = 101
559
+ AmdAthlonX4QuadCore = 102
560
+ AmdOpteronX1000Series = 103
561
+ AmdOpteronX2000Series = 104
562
+ AmdOpteronASeries = 105
563
+ AmdOpteronX3000Series = 106
564
+ AmdZen = 107
565
+ Hobbit = 112
566
+ CrusoeTm5000 = 120
567
+ CrusoeTm3000 = 121
568
+ EfficeonTm8000 = 122
569
+ Weitek = 128
570
+ IntelItanium = 130
571
+ AmdAthlon64 = 131
572
+ AmdOpteron = 132
573
+ AmdSempron = 133
574
+ AmdTurio64Mobile = 134
575
+ AmdOpteronDualCore = 135
576
+ AmdAthlon64X2DualCore = 136
577
+ AmdTurion64X2Mobile = 137
578
+ AmdOpteronQuadCore = 138
579
+ AmdOpteronThirdGen = 139
580
+ AmdPhenomFXQuadCore = 140
581
+ AmdPhenomX4QuadCore = 141
582
+ AmdPhenomX2DualCore = 142
583
+ AmdAthlonX2DualCore = 143
584
+ PaRisc = 144
585
+ PaRisc8500 = 145
586
+ PaRisc8000 = 146
587
+ PaRisc7300LC = 147
588
+ PaRisc7200 = 148
589
+ PaRisc7100LC = 149
590
+ PaRisc7100 = 150
591
+ V30 = 160
592
+ IntelXeon3200QuadCoreSeries = 161
593
+ IntelXeon3000DualCoreSeries = 162
594
+ IntelXeon5300QuadCoreSeries = 163
595
+ IntelXeon5100DualCoreSeries = 164
596
+ IntelXeon5000DualCoreSeries = 165
597
+ IntelXeonLVDualCore = 166
598
+ IntelXeonULVDualCore = 167
599
+ IntelXeon7100Series = 168
600
+ IntelXeon5400Series = 169
601
+ IntelXeonQuadCore = 170
602
+ IntelXeon5200DualCoreSeries = 171
603
+ IntelXeon7200DualCoreSeries = 172
604
+ IntelXeon7300QuadCoreSeries = 173
605
+ IntelXeon7400QuadCoreSeries = 174
606
+ IntelXeon7400MultiCoreSeries = 175
607
+ IntelPentiumIIIXeon = 176
608
+ IntelPentiumIIISpeedStep = 177
609
+ IntelPentium4 = 178
610
+ IntelXeon = 179
611
+ As400 = 180
612
+ IntelXeonMP = 181
613
+ AmdAthlonXP = 182
614
+ AmdAthlonMP = 183
615
+ IntelItanium2 = 184
616
+ IntelPentiumM = 185
617
+ IntelCeleronD = 186
618
+ IntelPentiumD = 187
619
+ IntelPentiumExtreme = 188
620
+ IntelCoreSolo = 189
621
+ IntelCore2Duo = 191
622
+ IntelCore2Solo = 192
623
+ IntelCore2Extreme = 193
624
+ IntelCore2Quad = 194
625
+ IntelCore2ExtremeMobile = 195
626
+ IntelCore2DuoMobile = 196
627
+ IntelCore2SoloMobile = 197
628
+ IntelCoreI7 = 198
629
+ IntelCeleronDualCore = 199
630
+ Ibm390 = 200
631
+ PowerPcG4 = 201
632
+ PowerPcG5 = 202
633
+ Esa390G6 = 203
634
+ ZArchitecture = 204
635
+ IntelCoreI5 = 205
636
+ IntelCoreI3 = 206
637
+ IntelCoreI9 = 207
638
+ ViaC7M = 210
639
+ ViaC7D = 211
640
+ ViaC7 = 212
641
+ ViaEden = 213
642
+ IntelXeonMultiCore = 214
643
+ IntelXeon3xxxDualCoreSeries = 215
644
+ IntelXeon3xxxQuadCoreSeries = 216
645
+ ViaNano = 217
646
+ IntelXeon5xxxDualCoreSeries = 218
647
+ IntelXeon5xxxQuadCoreSeries = 219
648
+ IntelXeon7xxxDualCoreSeries = 221
649
+ IntelXeon7xxxQuadCoreSeries = 222
650
+ IntelXeon7xxxMultiCoreSeries = 223
651
+ IntelXeon3400MultiCoreSeries = 224
652
+ AmdOpteron3000Series = 228
653
+ AmdSempronII = 229
654
+ AmdOpteronQuadCoreEmbedded = 230
655
+ AmdPhenomTripleCore = 231
656
+ AmdTurionUltraDualCoreMobile = 232
657
+ AmdTurionDualCoreMobile = 233
658
+ AmdTurionDualCore = 234
659
+ AmdAthlonDualCore = 235
660
+ AmdSempronSI = 236
661
+ AmdPhenomII = 237
662
+ AmdAthlonII = 238
663
+ AmdOpteronSixCore = 239
664
+ AmdSempronM = 240
665
+ IntelI860 = 250
666
+ IntelI960 = 251
667
+ ArmV7 = 256
668
+ ArmV8 = 257
669
+ HitachiSh3 = 258
670
+ HitachiSh4 = 259
671
+ Arm = 260
672
+ StrongArm = 261
673
+ _686 = 262
674
+ MediaGX = 263
675
+ MII = 264
676
+ WinChip = 265
677
+ Dsp = 266
678
+ VideoProcessor = 267
679
+
680
+
681
+ class ProcessorInformation(InformationBase):
682
+ @property
683
+ def Characteristics(self) -> ProcessorCharacteristics: ...
684
+ @property
685
+ def CoreCount(self) -> UInt16: ...
686
+ @property
687
+ def CoreEnabled(self) -> UInt16: ...
688
+ @property
689
+ def CurrentSpeed(self) -> UInt16: ...
690
+ @property
691
+ def ExternalClock(self) -> UInt16: ...
692
+ @property
693
+ def Family(self) -> ProcessorFamily: ...
694
+ @property
695
+ def Handle(self) -> UInt16: ...
696
+ @property
697
+ def Id(self) -> UInt64: ...
698
+ @property
699
+ def L1CacheHandle(self) -> UInt16: ...
700
+ @property
701
+ def L2CacheHandle(self) -> UInt16: ...
702
+ @property
703
+ def L3CacheHandle(self) -> UInt16: ...
704
+ @property
705
+ def ManufacturerName(self) -> str: ...
706
+ @property
707
+ def MaxSpeed(self) -> UInt16: ...
708
+ @property
709
+ def ProcessorType(self) -> ProcessorType: ...
710
+ @property
711
+ def Serial(self) -> str: ...
712
+ @property
713
+ def Socket(self) -> ProcessorSocket: ...
714
+ @property
715
+ def SocketDesignation(self) -> str: ...
716
+ @property
717
+ def ThreadCount(self) -> UInt16: ...
718
+ @property
719
+ def Version(self) -> str: ...
720
+
721
+
722
+ class ProcessorSocket(int):
723
+ Other = 1
724
+ Unknown = 2
725
+ DaughterBoard = 3
726
+ ZifSocket = 4
727
+ PiggyBack = 5
728
+ _None = 6
729
+ LifSocket = 7
730
+ Zif423 = 13
731
+ A = 14
732
+ Zif478 = 15
733
+ Zif754 = 16
734
+ Zif940 = 17
735
+ Zif939 = 18
736
+ MPga604 = 19
737
+ Lga771 = 20
738
+ Lga775 = 21
739
+ S1 = 22
740
+ AM2 = 23
741
+ F = 24
742
+ Lga1366 = 25
743
+ G34 = 26
744
+ AM3 = 27
745
+ C32 = 28
746
+ Lga1156 = 29
747
+ Lga1567 = 30
748
+ Pga988A = 31
749
+ Bga1288 = 32
750
+ RPga088B = 33
751
+ Bga1023 = 34
752
+ Bga1224 = 35
753
+ Lga1155 = 36
754
+ Lga1356 = 37
755
+ Lga2011 = 38
756
+ FS1 = 39
757
+ FS2 = 40
758
+ FM1 = 41
759
+ FM2 = 42
760
+ Lga20113 = 43
761
+ Lga13563 = 44
762
+ Lga1150 = 45
763
+ Bga1168 = 46
764
+ Bga1234 = 47
765
+ Bga1364 = 48
766
+ AM4 = 49
767
+ Lga1151 = 50
768
+ Bga1356 = 51
769
+ Bga1440 = 52
770
+ Bga1515 = 53
771
+ Lga36471 = 54
772
+ SP3 = 55
773
+ SP3R2 = 56
774
+ Lga2066 = 57
775
+ Bga1510 = 58
776
+ Bga1528 = 59
777
+ Lga4189 = 60
778
+
779
+
780
+ class ProcessorType(int):
781
+ Other = 1
782
+ Unknown = 2
783
+ CentralProcessor = 3
784
+ MathProcessor = 4
785
+ DspProcessor = 5
786
+ VideoProcessor = 6
787
+
788
+
789
+ class SensorEventHandler:
790
+ def __init__(self, object: Object, method: IntPtr): ...
791
+ def BeginInvoke(self, sensor: ISensor, callback: AsyncCallback, object: Object) -> IAsyncResult: ...
792
+ def EndInvoke(self, result: IAsyncResult) -> None: ...
793
+ def Invoke(self, sensor: ISensor) -> None: ...
794
+
795
+
796
+ class SensorType(int):
797
+ Voltage = 0
798
+ Current = 1
799
+ Power = 2
800
+ Clock = 3
801
+ Temperature = 4
802
+ Load = 5
803
+ Frequency = 6
804
+ Fan = 7
805
+ Flow = 8
806
+ Control = 9
807
+ Level = 10
808
+ Factor = 11
809
+ Data = 12
810
+ SmallData = 13
811
+ Throughput = 14
812
+ TimeSpan = 15
813
+ Timing = 16
814
+ Energy = 17
815
+ Noise = 18
816
+ Conductivity = 19
817
+ Humidity = 20
818
+
819
+
820
+ class SensorValue:
821
+ def __init__(self, value: Single, time: DateTime): ...
822
+ @property
823
+ def Time(self) -> DateTime: ...
824
+ @property
825
+ def Value(self) -> Single: ...
826
+
827
+
828
+ class SensorVisitor:
829
+ def __init__(self, handler: SensorEventHandler): ...
830
+ def VisitComputer(self, computer: IComputer) -> None: ...
831
+ def VisitHardware(self, hardware: IHardware) -> None: ...
832
+ def VisitParameter(self, parameter: IParameter) -> None: ...
833
+ def VisitSensor(self, sensor: ISensor) -> None: ...
834
+
835
+
836
+ class SMBios:
837
+ def __init__(self): ...
838
+ @property
839
+ def Bios(self) -> BiosInformation: ...
840
+ @property
841
+ def Board(self) -> BaseBoardInformation: ...
842
+ @property
843
+ def MemoryDevices(self) -> Set[MemoryDevice]: ...
844
+ @property
845
+ def ProcessorCaches(self) -> Set[CacheInformation]: ...
846
+ @property
847
+ def Processors(self) -> Set[ProcessorInformation]: ...
848
+ @property
849
+ def System(self) -> SystemInformation: ...
850
+ @property
851
+ def SystemEnclosure(self) -> SystemEnclosure: ...
852
+ def GetReport(self) -> str: ...
853
+
854
+
855
+ class SystemEnclosure(InformationBase):
856
+ @property
857
+ def AssetTag(self) -> str: ...
858
+ @property
859
+ def BootUpState(self) -> SystemEnclosureState: ...
860
+ @property
861
+ def LockDetected(self) -> bool: ...
862
+ @property
863
+ def ManufacturerName(self) -> str: ...
864
+ @property
865
+ def PowerCords(self) -> Byte: ...
866
+ @property
867
+ def PowerSupplyState(self) -> SystemEnclosureState: ...
868
+ @property
869
+ def RackHeight(self) -> Byte: ...
870
+ @property
871
+ def SecurityStatus(self) -> SystemEnclosureSecurityStatus: ...
872
+ @property
873
+ def SerialNumber(self) -> str: ...
874
+ @property
875
+ def SKU(self) -> str: ...
876
+ @property
877
+ def ThermalState(self) -> SystemEnclosureState: ...
878
+ @property
879
+ def Type(self) -> SystemEnclosureType: ...
880
+ @property
881
+ def Version(self) -> str: ...
882
+ @LockDetected.setter
883
+ def LockDetected(self, value: bool) -> None: ...
884
+ @SecurityStatus.setter
885
+ def SecurityStatus(self, value: SystemEnclosureSecurityStatus) -> None: ...
886
+
887
+
888
+ class SystemEnclosureSecurityStatus(int):
889
+ Other = 1
890
+ Unknown = 2
891
+ _None = 3
892
+ ExternalInterfaceLockedOut = 4
893
+ ExternalInterfaceEnabled = 5
894
+
895
+
896
+ class SystemEnclosureState(int):
897
+ Other = 1
898
+ Unknown = 2
899
+ Safe = 3
900
+ Warning = 4
901
+ Critical = 5
902
+ NonRecoverable = 6
903
+
904
+
905
+ class SystemEnclosureType(int):
906
+ Other = 1
907
+ Unknown = 2
908
+ Desktop = 3
909
+ LowProfileDesktop = 4
910
+ PizzaBox = 5
911
+ MiniTower = 6
912
+ Tower = 7
913
+ Portable = 8
914
+ Laptop = 9
915
+ Notebook = 10
916
+ HandHeld = 11
917
+ DockingStation = 12
918
+ AllInOne = 13
919
+ SubNotebook = 14
920
+ SpaceSaving = 15
921
+ LunchBox = 16
922
+ MainServerChassis = 17
923
+ ExpansionChassis = 18
924
+ SubChassis = 19
925
+ BusExpansionChassis = 20
926
+ PeripheralChassis = 21
927
+ RaidChassis = 22
928
+ RackMountChassis = 23
929
+ SealedCasePc = 24
930
+ MultiSystemChassis = 25
931
+ CompactPci = 26
932
+ AdvancedTca = 27
933
+ Blade = 28
934
+ BladeEnclosure = 29
935
+ Tablet = 30
936
+ Convertible = 31
937
+ Detachable = 32
938
+ IoTGateway = 33
939
+ EmbeddedPc = 34
940
+ MiniPc = 35
941
+ StickPc = 36
942
+
943
+
944
+ class SystemInformation(InformationBase):
945
+ @property
946
+ def Family(self) -> str: ...
947
+ @property
948
+ def ManufacturerName(self) -> str: ...
949
+ @property
950
+ def ProductName(self) -> str: ...
951
+ @property
952
+ def SerialNumber(self) -> str: ...
953
+ @property
954
+ def Version(self) -> str: ...
955
+ @property
956
+ def WakeUp(self) -> SystemWakeUp: ...
957
+
958
+
959
+ class SystemWakeUp:
960
+ Reserved = 0
961
+ Other = 1
962
+ Unknown = 2
963
+ ApmTimer = 3
964
+ ModemRing = 4
965
+ LanRemote = 5
966
+ PowerSwitch = 6
967
+ PciPme = 7
968
+ AcPowerRestored = 8