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

Classes

class  ADXConfigFlow
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 STEP_USER_DATA_SCHEMA
 

Detailed Description

Config flow for Azure Data Explorer integration.

Variable Documentation

◆ _LOGGER

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

Definition at line 28 of file config_flow.py.

◆ STEP_USER_DATA_SCHEMA

homeassistant.components.azure_data_explorer.config_flow.STEP_USER_DATA_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  vol.Required(CONF_ADX_CLUSTER_INGEST_URI): str,
4  vol.Required(CONF_ADX_DATABASE_NAME): str,
5  vol.Required(CONF_ADX_TABLE_NAME): str,
6  vol.Required(CONF_APP_REG_ID): str,
7  vol.Required(CONF_APP_REG_SECRET): str,
8  vol.Required(CONF_AUTHORITY_ID): str,
9  vol.Required(CONF_USE_QUEUED_CLIENT, default=False): BooleanSelector(),
10  }
11 )

Definition at line 30 of file config_flow.py.