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

Namespaces

 client
 
 config_flow
 
 const
 

Classes

class  AzureDataExplorer
 
class  FilterTest
 

Functions

bool async_setup (HomeAssistant hass, ConfigType yaml_config)
 
bool async_setup_entry (HomeAssistant hass, ConfigEntry entry)
 
bool async_unload_entry (HomeAssistant hass, ConfigEntry entry)
 

Variables

 _LOGGER = logging.getLogger(__name__)
 
 CONFIG_SCHEMA
 

Detailed Description

The Azure Data Explorer integration.

Function Documentation

◆ async_setup()

bool homeassistant.components.azure_data_explorer.async_setup ( HomeAssistant  hass,
ConfigType  yaml_config 
)
Activate ADX component from yaml.

Adds an empty filter to hass data.
Tries to get a filter from yaml, if present set to hass data.

Definition at line 60 of file __init__.py.

◆ async_setup_entry()

bool homeassistant.components.azure_data_explorer.async_setup_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Do the setup based on the config entry and the filter from yaml.

Definition at line 74 of file __init__.py.

◆ async_unload_entry()

bool homeassistant.components.azure_data_explorer.async_unload_entry ( HomeAssistant  hass,
ConfigEntry  entry 
)
Unload a config entry.

Definition at line 91 of file __init__.py.

Variable Documentation

◆ _LOGGER

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

Definition at line 36 of file __init__.py.

◆ CONFIG_SCHEMA

homeassistant.components.azure_data_explorer.CONFIG_SCHEMA
Initial value:
1 = vol.Schema(
2  {
3  DOMAIN: vol.Schema(
4  {
5  vol.Optional(CONF_FILTER, default={}): FILTER_SCHEMA,
6  },
7  )
8  },
9  extra=vol.ALLOW_EXTRA,
10 )

Definition at line 38 of file __init__.py.