Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the QNAP QSW integration."""
2 
3 from typing import Final
4 
5 ATTR_MAX: Final = "max"
6 ATTR_MESSAGE: Final = "message"
7 
8 DOMAIN: Final = "qnap_qsw"
9 MANUFACTURER: Final = "QNAP"
10 
11 RPM: Final = "rpm"
12 
13 QSW_COORD_DATA: Final = "coordinator-data"
14 QSW_COORD_FW: Final = "coordinator-firmware"
15 QSW_REBOOT = "reboot"
16 QSW_TIMEOUT_SEC: Final = 25
17 QSW_UPDATE: Final = "update"