mirror of https://github.com/home-assistant/core
31 lines
770 B
Python
31 lines
770 B
Python
"""Diagnostics support for Verisure."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.config_entries import ConfigEntry
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from .const import DOMAIN
|
|
from .coordinator import VerisureDataUpdateCoordinator
|
|
|
|
TO_REDACT = {
|
|
"date",
|
|
"area",
|
|
"deviceArea",
|
|
"name",
|
|
"time",
|
|
"reportTime",
|
|
"userString",
|
|
}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: ConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator: VerisureDataUpdateCoordinator = hass.data[DOMAIN][entry.entry_id]
|
|
return async_redact_data(coordinator.data, TO_REDACT)
|