mirror of https://github.com/home-assistant/core
26 lines
731 B
Python
26 lines
731 B
Python
"""Diagnostics support for SamsungTV."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from typing import Any
|
|
|
|
from homeassistant.components.diagnostics import async_redact_data
|
|
from homeassistant.const import CONF_TOKEN
|
|
from homeassistant.core import HomeAssistant
|
|
|
|
from . import SamsungTVConfigEntry
|
|
from .const import CONF_SESSION_ID
|
|
|
|
TO_REDACT = {CONF_TOKEN, CONF_SESSION_ID}
|
|
|
|
|
|
async def async_get_config_entry_diagnostics(
|
|
hass: HomeAssistant, entry: SamsungTVConfigEntry
|
|
) -> dict[str, Any]:
|
|
"""Return diagnostics for a config entry."""
|
|
coordinator = entry.runtime_data
|
|
return {
|
|
"entry": async_redact_data(entry.as_dict(), TO_REDACT),
|
|
"device_info": await coordinator.bridge.async_device_info(),
|
|
}
|