mirror of
https://github.com/home-assistant/core.git
synced 2026-09-27 01:46:11 -04:00
35 lines
739 B
Python
35 lines
739 B
Python
"""Diagnostics support for Pooldose."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import PooldoseConfigEntry
|
|
|
|
TO_REDACT = {
|
|
"IP",
|
|
"MAC",
|
|
"WIFI_SSID",
|
|
"AP_SSID",
|
|
"SERIAL_NUMBER",
|
|
"DEVICE_ID",
|
|
"OWNERID",
|
|
"NAME",
|
|
"GROUPNAME",
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: PooldoseConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = entry.runtime_data
|
|
|
|
return {
|
|
"device_info": async_redact_data(coordinator.device_info, TO_REDACT),
|
|
"data": coordinator.data,
|
|
}
|