Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the automation integration."""
2 
3 import logging
4 
5 CONF_ACTION = "action"
6 CONF_ACTIONS = "actions"
7 CONF_TRIGGER = "trigger"
8 CONF_TRIGGERS = "triggers"
9 CONF_TRIGGER_VARIABLES = "trigger_variables"
10 DOMAIN = "automation"
11 
12 CONF_HIDE_ENTITY = "hide_entity"
13 
14 CONF_CONDITION_TYPE = "condition_type"
15 CONF_INITIAL_STATE = "initial_state"
16 CONF_BLUEPRINT = "blueprint"
17 CONF_INPUT = "input"
18 CONF_TRACE = "trace"
19 
20 DEFAULT_INITIAL_STATE = True
21 
22 LOGGER = logging.getLogger(__package__)