Add system health settings path (#294)

Add changelog fragment

Change changelog fragment to lower-case
This commit is contained in:
Johannes Münch 2024-06-27 11:58:24 +02:00 committed by GitHub
parent dc7fa11f5d
commit 91fef4e3a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 42 additions and 0 deletions

View file

@ -4001,6 +4001,44 @@ PATHS = {
},
),
),
('system', 'health', 'settings'): APIData(
versioned=[
('7.14', '<', VersionedAPIData(
single_value=True,
fully_understood=True,
fields={
'cpu-overtemp-check': KeyInfo(),
'cpu-overtemp-startup-delay': KeyInfo(),
'cpu-overtemp-threshold': KeyInfo(),
'fan-control-interval': KeyInfo(can_disable=True, default='30s'),
'fan-full-speed-temp': KeyInfo(default=65),
'fan-min-speed-percent': KeyInfo(default=0),
'fan-mode': KeyInfo(),
'fan-on-threshold': KeyInfo(),
'fan-switch': KeyInfo(),
'fan-target-temp': KeyInfo(default=58),
'use-fan': KeyInfo(),
},
)),
('7.14', '>=', VersionedAPIData(
single_value=True,
fully_understood=True,
fields={
'cpu-overtemp-check': KeyInfo(),
'cpu-overtemp-startup-delay': KeyInfo(),
'cpu-overtemp-threshold': KeyInfo(),
'fan-control-interval': KeyInfo(default=30),
'fan-full-speed-temp': KeyInfo(default=65),
'fan-min-speed-percent': KeyInfo(default=12),
'fan-mode': KeyInfo(),
'fan-on-threshold': KeyInfo(),
'fan-switch': KeyInfo(),
'fan-target-temp': KeyInfo(default=58),
'use-fan': KeyInfo(),
},
)),
],
),
('system', 'identity'): APIData(
unversioned=VersionedAPIData(
single_value=True,