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

Classes

class  ConfigFlowError
 
class  RainbirdConfigFlowHandler
 
class  RainBirdOptionsFlowHandler
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 DATA_SCHEMA
 
 REAUTH_SCHEMA
 

Detailed Description

Config flow for Rain Bird.

Variable Documentation

◆ _LOGGER

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

Definition at line 35 of file config_flow.py.

◆ DATA_SCHEMA

homeassistant.components.rainbird.config_flow.DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_HOST): selector.TextSelector(),
4  vol.Required(CONF_PASSWORD): selector.TextSelector(
5  selector.TextSelectorConfig(type=selector.TextSelectorType.PASSWORD)
6  ),
7  }
8 )

Definition at line 38 of file config_flow.py.

◆ REAUTH_SCHEMA

homeassistant.components.rainbird.config_flow.REAUTH_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_PASSWORD): selector.TextSelector(
4  selector.TextSelectorConfig(type=selector.TextSelectorType.PASSWORD)
5  ),
6  }
7 )

Definition at line 46 of file config_flow.py.