Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.fritz.services Namespace Reference

Functions

list _async_get_configured_avm_device (HomeAssistant hass, ServiceCall service_call)
 
None async_setup_services (HomeAssistant hass)
 
None async_unload_services (HomeAssistant hass)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 SERVICE_SCHEMA_SET_GUEST_WIFI_PW
 

Detailed Description

Services for Fritz integration.

Function Documentation

◆ _async_get_configured_avm_device()

list homeassistant.components.fritz.services._async_get_configured_avm_device ( HomeAssistant  hass,
ServiceCall   service_call 
)
private
Get FritzBoxTools class from config entry.

Definition at line 68 of file services.py.

◆ async_setup_services()

None homeassistant.components.fritz.services.async_setup_services ( HomeAssistant  hass)
Set up services for Fritz integration.

Definition at line 32 of file services.py.

◆ async_unload_services()

None homeassistant.components.fritz.services.async_unload_services ( HomeAssistant  hass)
Unload services for Fritz integration.

Definition at line 85 of file services.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.fritz.services._LOGGER = logging.getLogger(__name__)
private

Definition at line 17 of file services.py.

◆ SERVICE_SCHEMA_SET_GUEST_WIFI_PW

homeassistant.components.fritz.services.SERVICE_SCHEMA_SET_GUEST_WIFI_PW
Initial value:
1 = vol.Schema(
2  {
3  vol.Required("device_id"): str,
4  vol.Optional("password"): vol.Length(min=8, max=63),
5  vol.Optional("length"): vol.Range(min=8, max=63),
6  }
7 )

Definition at line 19 of file services.py.