mirror of https://github.com/home-assistant/core
39 lines
822 B
Python
39 lines
822 B
Python
"""Diagnostics support for A. O. Smith."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import AOSmithConfigEntry
|
|
|
|
TO_REDACT = {
|
|
"address",
|
|
"city",
|
|
"contactId",
|
|
"dsn",
|
|
"email",
|
|
"firstName",
|
|
"heaterSsid",
|
|
"id",
|
|
"lastName",
|
|
"phone",
|
|
"postalCode",
|
|
"registeredOwner",
|
|
"serial",
|
|
"ssid",
|
|
"state",
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, config_entry: AOSmithConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
data = config_entry.runtime_data
|
|
|
|
all_device_info = await data.client.get_all_device_info()
|
|
return async_redact_data(all_device_info, TO_REDACT)
|