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

Classes

class  InvalidAuth
 
class  InvalidDeviceID
 
class  LinearGarageDoorConfigFlow
 

Functions

dict[str, Sequence[Collection[str]]] validate_input (HomeAssistant hass, dict[str, str] data)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
dictionary STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Linear Garage Door integration.

Function Documentation

◆ validate_input()

dict[str, Sequence[Collection[str]]] homeassistant.components.linear_garage_door.config_flow.validate_input ( HomeAssistant  hass,
dict[str, str]  data 
)
Validate the user input allows us to connect.

Data has the keys from STEP_USER_DATA_SCHEMA with values provided by the user.

Definition at line 30 of file config_flow.py.

Variable Documentation

◆ _LOGGER

homeassistant.components.linear_garage_door.config_flow._LOGGER = logging.getLogger(__name__)
private

Definition at line 22 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

dictionary homeassistant.components.linear_garage_door.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = {
2  vol.Required(CONF_EMAIL): str,
3  vol.Required(CONF_PASSWORD): str,
4 }

Definition at line 24 of file config_flow.py.