Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.fritzbox.config_flow Namespace Reference

Classes

class  FritzboxConfigFlow
 

Variables

 DATA_SCHEMA_CONFIRM
 
 DATA_SCHEMA_USER
 
string RESULT_INVALID_AUTH = "invalid_auth"
 
string RESULT_NO_DEVICES_FOUND = "no_devices_found"
 
string RESULT_NOT_SUPPORTED = "not_supported"
 
string RESULT_SUCCESS = "success"
 

Detailed Description

Config flow for AVM FRITZ!SmartHome.

Variable Documentation

◆ DATA_SCHEMA_CONFIRM

homeassistant.components.fritzbox.config_flow.DATA_SCHEMA_CONFIRM
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_USERNAME, default=DEFAULT_USERNAME): str,
4  vol.Required(CONF_PASSWORD): str,
5  }
6 )

Definition at line 28 of file config_flow.py.

◆ DATA_SCHEMA_USER

homeassistant.components.fritzbox.config_flow.DATA_SCHEMA_USER
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST, default=DEFAULT_HOST): str,
4  vol.Required(CONF_USERNAME, default=DEFAULT_USERNAME): str,
5  vol.Required(CONF_PASSWORD): str,
6  }
7 )

Definition at line 20 of file config_flow.py.

◆ RESULT_INVALID_AUTH

string homeassistant.components.fritzbox.config_flow.RESULT_INVALID_AUTH = "invalid_auth"

Definition at line 35 of file config_flow.py.

◆ RESULT_NO_DEVICES_FOUND

string homeassistant.components.fritzbox.config_flow.RESULT_NO_DEVICES_FOUND = "no_devices_found"

Definition at line 36 of file config_flow.py.

◆ RESULT_NOT_SUPPORTED

string homeassistant.components.fritzbox.config_flow.RESULT_NOT_SUPPORTED = "not_supported"

Definition at line 37 of file config_flow.py.

◆ RESULT_SUCCESS

string homeassistant.components.fritzbox.config_flow.RESULT_SUCCESS = "success"

Definition at line 38 of file config_flow.py.