mirror of https://github.com/home-assistant/core
22 lines
564 B
Python
22 lines
564 B
Python
"""Diagnostics support for APCUPSD."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import APCUPSdConfigEntry
|
|
|
|
TO_REDACT = {"SERIALNO", "HOSTNAME"}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: APCUPSdConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = entry.runtime_data
|
|
data = coordinator.data
|
|
return async_redact_data(data, TO_REDACT)
|